C#代码

时间:2015-05-06 01:33:43   收藏:0   阅读:347

using System;
using System.Windows.Forms;

public class frmMain : Form
{
    #region Windows Code
    private void InitializeComponent()
    {
            this.SuspendLayout();
            //
            // frmMain
            //
            this.ClientSize = new System.Drawing.Size(648, 475);
            this.Name = "frmMain";
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.ResumeLayout(false);

    }
    #endregion
    public frmMain()
    {
        InitializeComponent();
    }
    [STAThread]
    public static void Main()
    {
        frmMain main = new frmMain();
        Application.Run(main);
    }

    private void frmMain_Load(object sender, EventArgs e)
    {

    }

}

原文:http://kaixinbuliao.blog.51cto.com/2567365/1642300

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!