南骏 池
2024-09-01 fc1b563df6d0405a24e7898c997bd52472ae9154
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using DevExpress.LookAndFeel;
using DevExpress.Skins;
using DevExpress.UserSkins;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
 
namespace Gs.DevApp
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            // Application.Run(new Gs.DevApp.TestForm.FluentDesignForm1());
            DevFrm.FrmLogin fmLogin = new DevFrm.FrmLogin();
            fmLogin.ShowDialog();
            if (fmLogin.DialogResult == DialogResult.OK)
            {
                //在线程中打开主窗体
                Application.Run(new DevFrm.FrmMain());
            }
        }
    }
 
  
}