我直接从数据库查看了绑定数据,但不清楚所有这些绑定和数据集是如何为我工作的所以我决定跳过这个并将数据自己插入到comBox中(在你的帮助下).
我在网上看到的代码如下:
public partial class Form1 : Form { // Content item for the combo Box private class Item { public string Name; public int Value; public Item(string name,int value) { Name = name; Value = value; } public override string ToString() { // Generates the text shown in the combo Box return Name; } } public Form1() { InitializeComponent(); // Put some stuff in the combo Box comboBox1.Items.Add(new Item("Blue",1)); comboBox1.Items.Add(new Item("Red",2)); comboBox1.Items.Add(new Item("Nobugz",666)); } private void comboBox1_SelectedIndexChanged(object sender,EventArgs e) { // Display the Value property Item itm = (Item)comboBox1.SelectedItem; Console.WriteLine("{0},{1}",itm.Name,itm.Value); } }
你真的必须创建一个新类才能将数据添加到组合框中吗?
另外,使用上述技术我的代码如下:
while (rdata.Read()){ String Name = (String)rdata["vetName"]; Name = Name.Trim(); String Surname = (String)rdata["vetSurname"]; Surname = Surname.Trim(); String id = rdata["vetID"].ToString().Trim(); MessageBox.Show("ID " + id); int value1 = Convert.ToInt32(id); MessageBox.Show("value1 " + value1); String display = (String)Name + " " + Surname; editVetComboBox.Items.Add(new Item(display,2)); }
问题是虽然组合框中填充了firstname和surname,但未添加值(ID).
有任何想法吗 ?
非常感谢,
理查德
解决方法
ComboBox是最常见的GUI元素之一.它用于为用户提供从列表中选择项目或输入新文本的功能.在这里,我将使用Microsoft Visual Studio .Net 2005向您展示C#中ComboBox的一些常用和有用的功能.
最简单的ComboBox:
在最简单的情况下,我们在列表中添加一些字符串,如下所示 –
myComboBox.Items.Add("Bangladesh"); myComboBox.Items.Add("India"); myComboBox.Items.Add("Pakistan"); myComboBox.Items.Add("Srilanka"); myComboBox.Items.Add("Maldives"); myComboBox.Items.Add("Nepal"); myComboBox.Items.Add("Bhutan");
排序清单:
通常用户希望选项将按排序顺序显示.为此,我们必须增加一行代码 –
myComboBox.Sorted = true;
DropDownStyle:
在ComboBox中,用户可以输入文本或只从列表中选择一个项目.所以开发者应该设置它的风格.有3个选项:
ComboBoxStyle.DropDownList: User can just select one item from a list. ComboBoxStyle.DropDown: User can either type a text or select an item from list. ComboBoxStyle.Simple: User can only type a text in text Box. Item list is not shown.
例:
myComboBox.DropDownStyle = ComboBoxStyle.DropDown;
宝贵意见/词典:
当用户输入文本时,如果在键入时在组合框的正下方显示某些建议,则他/她会感到高兴.对于这项功能,我们需要写几行 –
myComboBox.AutoCompleteSource = AutoCompleteSource.ListItems; myComboBox.AutoCompleteMode = AutoCompleteMode.Suggest;
一个恶作剧:
可能存在用户选择一些可读文本的情况,但是对于程序员来说相应的值(不是所选文本)是重要的.例如,在数据库项目中,StudentID对于程序员而言比StudentName更重要.因此,如果我们可以在组合框中添加(名称,值)组合并且在名称选择时我们可以轻松获得相应的值,那将是很好的.
我们可以通过添加包含Name和Value的对象来实现.
class ComboBoxItem { public string Name; public int Value; public ComboBoxItem(string Name,int Value) { this.Name = Name; this.Value = Value; } } myComboBox.Items.Add(new ComboBoxItem("Ashis Saha",1)); myComboBox.Items.Add(new ComboBoxItem("Subrata Roy",2)); myComboBox.Items.Add(new ComboBoxItem("Aminul Islam",3)); myComboBox.Items.Add(new ComboBoxItem("Shakibul Alam",4)); myComboBox.Items.Add(new ComboBoxItem("Tanvir Ahmed",5));
但是如果您现在看到ComboBox列表,您会注意到所有项目都是相同的,它们是这些对象的类名.实际上,这些项只不过是那些对象的ToString()函数的输出.因此,如果我们简单地覆盖ToString()函数以表现我们的期望,那么我们就完成了.
class ComboBoxItem { public string Name; public int Value; public ComboBoxItem(string Name,int Value) { this.Name = Name; this.Value = Value; } // override ToString() function public override string ToString() { return this.Name; } }
您可以通过以下方式获得所选值 –
int selectedValue = ((ComboBoxItem)myComboBox.SelectedItem).Value;