如何为运行时创建的按钮创建事件?
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实在是太容易了。
我刚刚向设计器添加了一个按钮,并查看了设计器生成的代码。
我只需创建按钮,实现事件方法,然后引用该方法向按钮添加新的 Click 事件。
仅此而已。有用。
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.
That was all. It works.