關於我自己

我的相片
Welcome to discuss about : Chinese Traditional Medicine and Acupuncture Please send me the email: tccnchsu@gmail.com Chih-Yu Hsu

最新消息

總網頁瀏覽量

2009年12月16日 星期三

作一個按鈕

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 WindowsFormsApplication1

{

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();



this.Controls.Add(Button1);



}

}

}

沒有留言: