标题:c#中在代码中定义了一个Button控件,如何添加该控件的单击事件。该事件的作 ...
只看楼主
罗森林
Rank: 1
来 自:广东梅州
等 级:新手上路
帖 子:12
专家分:5
注 册:2012-10-15
结帖率:100%
已结贴  问题点数:10 回复次数:2 
c#中在代码中定义了一个Button控件,如何添加该控件的单击事件。该事件的作用是使另一个也是自己在代码中定义的Label控件的Text属性设为“取消”。
c#中在代码中定义了一个Button控件,如何添加该控件的单击事件。该事件的作用是使另一个也是自己在代码中定义的Label控件的Text属性设为“取消”。谢谢了呀
搜索更多相关主题的帖子: 如何 
2012-11-14 21:23
mmxo
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:13
帖 子:189
专家分:1090
注 册:2012-11-7
得分:10 
程序代码:
using System;
using System.Drawing;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            var lbl = new Label {Text = "LabelText"};
            Controls.Add(lbl);
            var but = new Button
                          {
                              Text     = "ButtonText",
                              Tag      = lbl,
                              Location = new Point(lbl.Location.X, lbl.Location.Y + lbl.Height)
                          };
            but.Click += But_Click;
            Controls.Add(but);
        }
        void But_Click(object sender, EventArgs e)
        {
            ((Label) ((Button) sender).Tag).Text = "取消";
        }
    }
}

为提高中华编程水平而奋斗
2012-11-14 21:47
罗森林
Rank: 1
来 自:广东梅州
等 级:新手上路
帖 子:12
专家分:5
注 册:2012-10-15
得分:0 
不甚感激,真的好谢谢你!!
2012-11-14 22:11



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-387075-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.054808 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved