/* * 由SharpDevelop创建。 * 用户: Administrator * 日期: 2019/6/4 星期二 * 时间: 09:50 * * 要改变这种模板请点击 工具|选项|代码编写|编辑标准头文件 */ using System; using System.Windows.Forms; namespace WxRobot { /// /// Class with program entry point. /// internal sealed class Program { /// /// Program entry point. /// [STAThread] private static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }