码迷,mamicode.com
首页 > 其他好文 > 详细

动态创建控件

时间:2019-02-07 14:55:13      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:threading   inf   code   图片   ini   img   col   public   component   

技术图片

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication4
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            ((Button)sender).Text = "Clicked";  // 更改当前button的内容
            Button newButton = new Button();  // 创建一个新的button
            newButton.Text = "newButton";  // 新Button显示的内容
            newButton.Click += new EventHandler(NewButton_Click);
            // newButton.Click += NewButton_Click;
            Controls.Add(newButton);  // 动态添加到窗口
        }

        private void NewButton_Click(object sender, EventArgs e)
        {
            ((Button)sender).Text = "newClicked!";
        }
    }
}

 

动态创建控件

标签:threading   inf   code   图片   ini   img   col   public   component   

原文地址:https://www.cnblogs.com/namejr/p/10354788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!