如何在.net winforms中执行在运行时生成的代码事件?
我正在从数据库获取checkedListBox 值。根据我的复选框选择,它将执行一些操作。我必须为选中的项目编写代码。
I am getting checkedListBox values from database. Based on my checkbox selection it will perform some operation.where i have to write the code for checked items.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要订阅
CheckListBox .ItemCheck
事件。您可以在构造函数中的代码中执行此操作或覆盖OnLoad
,也可以使用 WinForms 设计器属性窗口事件选项卡。在代码中(其中
checkListBox
是CheckListBox
的名称):在设计器中:
设计器中的 CheckListBox
ItemCheck event 并双击 - 事件处理程序将自动生成并为您连接,您只需添加代码即可使其执行某些操作
You need to subscribe to the
CheckListBox.ItemCheck
event. You can do this in code in your constructor or override toOnLoad
or you can use the WinForms designer properties window events tab.In code (where
checkListBox
is the name of yourCheckListBox
):In the designer:
CheckListBox
in the designerItemCheck
event and double-click - the event handler will be auto-generated and hooked up for you, you just need to add your code to make it do something在设计器中选择 CheckedListBox,转到“属性”窗口中的“事件”选项卡,然后双击任何事件。
Select the CheckedListBox in the designer, go to the Events tab in the Properties window, and double-click on any event.