在 C# 中的 Windows 窗体上添加项目和扩展 checklistbox 的集合列表时出现问题
这可能看起来是一个愚蠢的问题。 我有一个文本框,可用于在 Windows 窗体上运行时将项目添加到选中列表框中。 我正在使用c#。 它在运行时工作得非常好。 当表单打开时,该项目将被添加。 但是,当我关闭并再次打开表单时,我在 checklistbox 列表中看不到添加的项目。 请注意,我不使用数据源,也不想使用。 我不想对任何内容进行硬编码,并且更愿意使用表单上的文本框输入作为变量来输入集合列表。 我无法找到扩展我的复选框选项的方法。 任何援助将不胜感激。
This may seem like a dumb question. I have a textbox that can be used to add items to a checkedlistbox at runtime on a windows form. I'm using c#. It works perfectly fine at runtime. The item gets added and stuff, when the form is open. But, when I close and open the form again, I don't see the added item in the checkedlistbox list. Note, I don't use a datasource and don't want to. I wouldn't want to hardcode anything and would prefer to use a textbox input on the form as a variable to feed into the collections list. I couldn't figure out a way to expand my checkedlistbox options. Any assistance would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你如何打开表格? 是这样的吗:
我认为发生这种情况的唯一原因是您每次显示它时都实例化一个新的表单实例,而不是重用相同的表单。
How are you opening the form? Is it something like:
The only reason I can think that's happening is that you're instantiating a new form instance every time you show it, instead of reusing the same form.
让您的表单采用
ref List; 值
作为参数。 然后将其设置为 CheckedListBox 的 BindingSource。这是代码:
Have your Form take a
ref List<string> values
as parameter. Then make this as BindingSource for the CheckedListBox.Here is the code: