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)
{
}
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)
{
}
}
本文转自鹅倌51CTO博客,原文链接:http://blog.51cto.com/kaixinbuliao/1642300 ,如需转载请自行联系原作者