我创建了一个普通的 winform 并添加LookUpEdit
到我的表单中,并创建了一个包含string
键和string
值的字典。我LookupEdit.Properties.Datasource
使用BindingSource
.
加载 Lookupedit 时,我想隐藏字典键:
private LookUpEdit lookup1;
void InitializeComponent()
{
//...
this.lookup1 = new DevExpress.XtraEditors.LookUpEdit();
this.lookup1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
//this.cmbCards.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.lookup1.Location = new System.Drawing.Point(400, 125);
this.lookup1.Name = "Test";
this.lookup1.Properties.ShowHeader = false;
this.lookup1.Properties.ValueMember = "Test";
this.lookup1.Size = new System.Drawing.Size(400, 85);
this.lookup1.TabIndex = 0;
this.lookup1.Tag = "";
this.lookup1.Properties.BestFit();
this.lookup1.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
this.lookup1.Properties.BestFit();
this.lookup1.Properties.PopupWidth = 50;
this.lookup1.Properties.PopupSizeable = false;
//...
}
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Dictionary<string, string> dic = new Dictionary<string, string>();
dic.Add("Test", "1");
dic.Add("Test2", "2");
dic.Add("Test3", "3");
dic.Add("Test4", "4");
dic.Add("Test5", "5");
dic.Add("Test6", "6");
dic.Add("Test7", "7");
dic.Add("Test8", "8");
dic.Add("Test9", "9");
dic.Add("Test10", "10");
this.lookup1.Properties.DataSource = new BindingSource(dic, null);
this.lookup1.Properties.ShowLines = false;
this.lookup1.Properties.ShowPopupShadow = false;
this.lookup1.ItemIndex = 0;
}
}
这显示了以下内容:
Output
Test 1
Test2 2
我需要输出,因为
必须隐藏“1”“测试”。