如何对查找进行硬编码编辑
嗨,, 我在 Windows 应用程序中使用 C#,我需要对 Lookupedit 进行硬编码。我希望 Lookupedit 在值成员为 1 时显示“YES”,在值成员为 0 时显示“NO”。
现在当我使用 Lookupedit 时,它显示所有显示成员。这都是是和否...这不想发生。我只需要一个是和否选项,就像组合框一样...请帮助我
hii,,
I am using c# in my windows application i need to hardcode the lookupedit..I want the lookupedit to show"YES"when the value member is 1 and "NO"when the value member is 0..
Right now when i am using lookupedit,it is showing all the display members.that is all yes and no's...this dont want to happen.I just need one yes and no option just like combo box...please help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解您的任务,您应该过滤 LookupEdit 的基础数据源,使其仅包含 ValueMember 等于 0 和 1 的两条记录。
If I understand your task correctly, you should filter the LookupEdit's underlying DataSource so that it contains only two records with ValueMember equals 0 and 1.