Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/CS/MDIDemo/ |
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/CS/MDIDemo/Program.cs |
using System; using System.Collections.Generic; using System.Windows.Forms; namespace DevExpress.XtraBars.Demos.MDIDemo { static class Program { [STAThread] static void Main() { DevExpress.UserSkins.BonusSkins.Register(); DevExpress.Skins.SkinManager.EnableFormSkins(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new frmMain()); } } }