using System; using System.IO; using System.Windows.Forms; namespace StyleLibManager { static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); string strPath = Path.GetDirectoryName(Application.StartupPath); string styleLibPath = Path.Combine(strPath, "Style"); Application.Run(new FrmStyleMain(styleLibPath)); } } }