如何为运行时创建的按钮创建事件?

发布于 2024-12-11 10:55:00 字数 152 浏览 0 评论 0原文

我有一个带有 gui 的应用程序,我在其中创建了一些按钮,而不是与设计器一起创建,而是在代码中的 runetime 中创建。

我需要这些按钮的一些点击事件。有没有办法在没有设计师的情况下制作活动?也许这是一个菜鸟问题,但我以前没有这样做过,而且我没有得到搜索msdn的意义。

I have an application with a gui, where I create some buttons not with the designer, but while runetime in code.

I need some click events for these buttons. Is there a way to make the events without the designer? Maybe it is a noob question, but i haven't done this before and i didn't got the point searching msdn.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

肥爪爪 2024-12-18 10:55:00

实在是太容易了。

我刚刚向设计器添加了一个按钮,并查看了设计器生成的代码。

我只需创建按钮,实现事件方法,然后引用该方法向按钮添加新的 Click 事件。

    this.btnSaveSignal = new System.Windows.Forms.Button();
    this.btnSaveSignal.Click += new System.EventHandler(this.btnSaveSignal_Click);
    .
    .
    .
    private void btnSaveSignal_Click(object sender, EventArgs e)
    {
        ...
    }

仅此而已。有用。

It was really too easy.

I just added a Button with the designer and looked what code the designer generated.

I only had to create the button, implement the event method and then add a new Click Event to the button with reference to the method.

    this.btnSaveSignal = new System.Windows.Forms.Button();
    this.btnSaveSignal.Click += new System.EventHandler(this.btnSaveSignal_Click);
    .
    .
    .
    private void btnSaveSignal_Click(object sender, EventArgs e)
    {
        ...
    }

That was all. It works.

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