C#信号 Send

来源:互联网 发布:网络歌曲你是我的唯 编辑:程序博客网 时间:2024/04/30 02:56
        private void btn_Click(object sender, System.EventArgs e)        {            // unboxing            Button currentButton = (Button)sender;            // 显示点击了哪个按钮            txt_msg.Text = "你点击了" + currentButton.Text;        }

值得注意!

0 0
原创粉丝点击