如何用设置值填充 Devexpress.LookUpEdit?
我有一个 Devexpress LookUpEdit,我想填充 2-3 个值。例如“值 1”(1) 和“值 2”(2)。我希望这个名称是 LookUpEdit 的 displayMember,括号中的数字是 valueMember,这样如果给我数字 1,我就知道将 LookUpEdit 的选定值设置为“值 1”。
I have a Devexpress LookUpEdit that I want to fill with 2-3 values. For example "Value 1" (1) and "Value 2" (2). I want this name to be displayMember of the LookUpEdit and the number in brackets be the valueMember so that if I was given the number 1 I know to set the selected value of the LookUpEdit to "Value 1".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该创建一个具有两个属性的类,然后将其一组实例绑定到 LookUpEdit。
然后,您可以设置 LookUpEdit 的
DisplayMember
和ValueMember
属性。You should make a class with two properties, then bind a set of instances of it to the LookUpEdit.
You can then set the LookUpEdit's
DisplayMember
andValueMember
properties.