如何在.net winforms中执行在运行时生成的代码事件?

发布于 2024-09-06 20:51:55 字数 66 浏览 4 评论 0原文

我正在从数据库获取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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

欢你一世 2024-09-13 20:51:55

您需要订阅 CheckListBox .ItemCheck 事件。您可以在构造函数中的代码中执行此操作或覆盖 OnLoad,也可以使用 WinForms 设计器属性窗口事件选项卡。

在代码中(其中 checkListBoxCheckListBox 的名称):

public MyType()
{
    this.checkListBox.ItemCheck += new ItemCheckEventHandler(OnCheckListBoxItemCheck);
}

private void OnCheckListBoxItemCheck(object sender, ItemCheckEventArgs args)
{
   //TODO: Do your operation...
}

在设计器中

  1. 选择您的 设计器中的 CheckListBox
  2. Ctrl+F4 查看属性
  3. 选择“事件”选项卡(由小闪电指示)
  4. 找到 ItemCheck event 并双击 - 事件处理程序将自动生成并为您连接,您只需添加代码即可使其执行某些操作

You need to subscribe to the CheckListBox.ItemCheck event. You can do this in code in your constructor or override to OnLoad or you can use the WinForms designer properties window events tab.

In code (where checkListBox is the name of your CheckListBox):

public MyType()
{
    this.checkListBox.ItemCheck += new ItemCheckEventHandler(OnCheckListBoxItemCheck);
}

private void OnCheckListBoxItemCheck(object sender, ItemCheckEventArgs args)
{
   //TODO: Do your operation...
}

In the designer:

  1. Select your CheckListBox in the designer
  2. Press Ctrl+F4 to view the Properties
  3. Select the Events tab (indicated by a little lightning bolt)
  4. Find the ItemCheck 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
北凤男飞 2024-09-13 20:51:55

在设计器中选择 CheckedListBox,转到“属性”窗口中的“事件”选项卡,然后双击任何事件。

Select the CheckedListBox in the designer, go to the Events tab in the Properties window, and double-click on any event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文