展开全部
1、点击“开始”—“Visual Studio 2015”,启动 Visual Studio 2015。
2、点击新建项目,新建一个控制台应用程序项目。
3、DropDownList包含在System.Collections.Generic名空间中,在使用前请务必确认已引用这个命名空间。
4、创建一个Dictionary对象,并声明它的键类型和值类型,如以 key 的类型为 int , value的类型为string来创建一个名为testDic的Dictionary对象。
5、使用ADD方法,向testDic对象中添加一系列元素。
6、点击Visual Studio 2015工具栏的“启动”,看看效果。
展开全部
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
里面
要先把dropdownlist控件的autopostback属性改为true
private void DropDownList1_SelectedIndexChanged(object sender, System.EventArgs e)
{
this.Label3.Text=this.DropDownList2.SelectedItem.ToString();//text this.Label4.Text=this.DropDownList2.SelectedValue.ToString();//value
}
如果用按钮就可以直接写
private void Button1_Click(object sender, System.EventArgs e)
{
this.Label1.Text=this.DropDownList1.SelectedItem.ToString();
this.Label2.Text=this.DropDownList1.SelectedValue.ToString();
}
要先把dropdownlist控件的autopostback属性改为true
private void DropDownList1_SelectedIndexChanged(object sender, System.EventArgs e)
{
this.Label3.Text=this.DropDownList2.SelectedItem.ToString();//text this.Label4.Text=this.DropDownList2.SelectedValue.ToString();//value
}
如果用按钮就可以直接写
private void Button1_Click(object sender, System.EventArgs e)
{
this.Label1.Text=this.DropDownList1.SelectedItem.ToString();
this.Label2.Text=this.DropDownList1.SelectedValue.ToString();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Label1.Text = DropDownList1.SelectedValue.ToString();
或者DropDownList1.SelectedItem.Text
用value还是text,就看你在设计器里怎么设置的。
或者DropDownList1.SelectedItem.Text
用value还是text,就看你在设计器里怎么设置的。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
DropDownList的ID.SelectedValue 就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询