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