资源简介

下拉框绑定数据显示名称对应相关值,比如下拉框显示是中文城市名,实际的数据是城市的拼音。


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void comboBox1_SelectedIndexChanged(object sender EventArgs e)
        {
            richTextBox1.Text = comboBox1.SelectedValue.ToString();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            //需放在Load处;
            //下拉框绑定数据需添加指令集using System.Data;
            DataTable dt = new DataTable();
            DataColumn column;
            DataRow row;

            co

评论

共有 条评论