是否可以在 C# winforms 的复选框列表控件内添加文本框?
我在使用 c# 构建的 Windows 窗体应用程序中有一个复选框列表控件。我正在使用此复选框列表来添加或删除产品中的某些属性。我想要的功能是,当我单击任何一个复选框时,我想要复选框旁边显示一个文本框,以便我可以输入该属性的值并以某种方式保存该值。
请帮忙。
I have a checkboxlist control in my windows forms application that i am building using c#.I am using this checkboxlist to add or remove certain attributes from a product.The functionality i want is that when i click on any one of the checkboxes, i want a textbox to appear beside the checkbox so that I can enter the value of that attribute and save that value somehow.
Please Help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要创建自定义控件来执行此操作。 (继承Control添加自定义功能)。或者直接使用WPF
You will need to Create Custom control to do that. (Inherit the Control add custom functionality). Or simply use WPF