You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
810 B
C#

1 month ago
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
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[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
}
}
}