http://www.wpf123.com/news/?143.html
定义 combox绑定类:
public class ComboxData
{
public string Text{ set; get; }
public string Value{ set; get; }
public override string ToString()
{
return Text;
}
}
具体绑定:
DevExpress.XtraEditors.ComboBoxEdit combox;
ComboxData data = new ComboxData();
data.Text =”需要显示的文本”;
data.Value= “类似Tag功能”;
combox.Properties.Items.Add(data);
由于我们重写了ToString()方法,这样绑定后就可以显示我们重写内容里面的文本
使用:
string text=(combox.SelectedItem as ComboxData).Text;
string value=(combox.SelectedItem as ComboxData).Value;
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110533.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...