using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using DevExpress.UserSkins; using DevExpress.Skins; using DevExpress.LookAndFeel; using GeoSigmaDrawLib; namespace RiverPortray { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); #if DEBUG DrawerData drawer = new DrawerData(); drawer.OpenFile("C:\\temp\\趋势刻画.dfd"); Application.Run(new FormMain(drawer.pXy)); drawer.Dispose(); #else Application.Run(new FormMain()); #endif } } }