Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/Reporting/CS/SnapMainDemo/ |
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/Reporting/CS/SnapMainDemo/Program.cs |
using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace SnapDemos { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { DevExpress.UserSkins.BonusSkins.Register(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new frmMain()); } } }