码迷,mamicode.com
首页 > Web开发 > 详细

20151214学习内容:Web之列表框

时间:2015-12-21 00:07:06      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

列表框: ListBox

    1、 绑定数据 方法一:
            testDataContext context = new testDataContext();

            ListBox1.DataSource = context.Nation;
            ListBox1.DataValueField = "Code";
            ListBox1.DataTextField = "Name";
            ListBox1.DataBind();
        绑定数据 方法二:
            ListItem item = new ListItem();
            item.Value = "0001";
            item.Text = "中国";
            ListBox1.Items.Add(item);
        绑定数据 方法三:
            点击ListBox右边的小箭头,选择数据源

     2、 取选中的值:

        ListBox属性中SelectionMode设置为Single是单选,Multiple是多选

        单选:
            Label1.Text = ListBox1.SelectedValue.ToString();
        多选:
            Label1.Text = "";//清空
            foreach (ListItem item in ListBox1.Items)
            {
                if (item.Selected)
                {
                    Label1.Text += item.Value;
                }
            }

    3、设置哪一项选中
        单选:
            ListBox1.SelectedIndex = 0;
        多选:
            foreach (ListItem item in ListBox1.Items)
            {
                if (item.Text =="汉族"||item.Text == "满族")
                {
                    item.Selected = true;
                }
            }

 

20151214学习内容:Web之列表框

标签:

原文地址:http://www.cnblogs.com/mn-b/p/5062211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!