C
cui27
Unregistered / Unconfirmed
GUEST, unregistred user!
是这样的我想在ComboBox.Items里面显示值与实际值不一样。
比如ComboBox.Items.text=姓名
ComboBox.Items.ID=一个唯一编号。
就如同PB中的下拉数据窗口。
using System;
using System.Windows.Forms;
public class ComboBoxEx : System.Windows.Forms.ComboBox
{
}
public class ItemsEx : System.Windows.Forms.ComboBox.ObjectCollection
{
private string id;
public string ID
{
get{return id;}
set{id=value;}
}
}
报错: 重载“ObjectCollection”方法未获取“0”参数
Items是个集合其类是ObjectCollection。
帮助上说。如果不将此类的实例与 ComboBox 控件相关联,则不能创建该实例。
问题2:
在DataGrid里面如何定位一行记录。
就是怎样获取被选中的记录?
比如ComboBox.Items.text=姓名
ComboBox.Items.ID=一个唯一编号。
就如同PB中的下拉数据窗口。
using System;
using System.Windows.Forms;
public class ComboBoxEx : System.Windows.Forms.ComboBox
{
}
public class ItemsEx : System.Windows.Forms.ComboBox.ObjectCollection
{
private string id;
public string ID
{
get{return id;}
set{id=value;}
}
}
报错: 重载“ObjectCollection”方法未获取“0”参数
Items是个集合其类是ObjectCollection。
帮助上说。如果不将此类的实例与 ComboBox 控件相关联,则不能创建该实例。
问题2:
在DataGrid里面如何定位一行记录。
就是怎样获取被选中的记录?