51ASPX.NET上有很多开源的小系统,自己去下,CSDN下载频道也有

解决方案 »

  1.   

    多翻翻MSDN,上面有很多实例,可以参考参考
      

  2.   

    我给你现编一个using System;
    using System.Windows.Forms;
    public class HelloWorld
    {
        static void Main(){
            Form FrmMain = new Form();
            FrmMain.Load += new EventHandler(Load);
            Application.Run(FrmMain);
        }    static void Load(object sender, EventArgs e){
            MessageBox.Show("hello world!");
        }
    }
      

  3.   

    google OR baidu 多的是了