回 帖 发 新 帖 刷新版面

主题:为什么和书上的一模一样会出错,一个窗口问题

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

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

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, System.EventArgs e)
        {
            ((button)sender).Text = "clicked!";
            Button newbutton =new Button();
            newbutton.Text = "new button!";
            newbutton.Click+=new EventHandler(newbutton_Click);
            Control.Add(newbutton);
        }
        private void newbutton_Click(object sender, System.EventArgs e)
        {
            ((button)sender).Text = "clicked!!!";
        }
    }
}

回复列表 (共3个回复)

沙发

((Button)sender).Text吧
注意大小写

板凳

提示错误:
System.Windows.Forms.Control.并不包含"Add"的定义

3 楼

Controls.Add(newbutton);

我来回复

您尚未登录,请登录后再回复。点此登录或注册