Esempio n. 1
0
        public MainForm()
        {
            Settings.Load();

            InitializeComponent();
            Log.Form    = this;
            overlayForm = new OverlayForm(this);
            nodes       = new List <TreeNode>();
        }
Esempio n. 2
0
        public MainForm()
        {
            Settings.Load();

            InitializeComponent();

            Log.Form = this;
            overlayForm = new OverlayForm();
            nodes = new List<TreeNode>();
        }
Esempio n. 3
0
 public MainForm()
 {
     Settings.Load();
     if (Settings.FirstRun)
     {
         LMessageBox.Alert("本软件完全免费,仅供学习交流使用,禁止倒卖。\n如果您是通过闲鱼、拼多多、淘宝等平台购买到本软件,请立即退货并差评!\nDFAssist_CN 中文支持版唯一指定官网 http://ffxiv.diemoe.net/");
         Settings.FirstRun = false;
     }
     InitializeComponent();
     Log.Form    = this;
     overlayForm = new OverlayForm(this);
     nodes       = new List <TreeNode>();
 }