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

namespace _123
{
public partial class Form1 : Form
{
System.Windows.Forms.Button Button1;
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
Button1 = new System.Windows.Forms.Button();

Button1.Location = new Point(100, 100);
this.Controls.Add(Button1);
Button1.Click += new System.EventHandler(this.Button1_Click);

Button[] btuArray = new Button[3];
}

private void Button1_Click(object sender, EventArgs e)
{
MessageBox.Show("HELLO");
}
}
}

創作者介紹
創作者 王宗華 的頭像
ray800528

王宗華

ray800528 發表在 痞客邦 留言(0) 人氣( 1 )