using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using AntdUI; namespace DHSoftware.Views { public partial class WelcomeWindow : Window { public WelcomeWindow() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } /// /// 窗体对象实例 /// private static WelcomeWindow _instance; internal static WelcomeWindow Instance { get { if (_instance == null) _instance = new WelcomeWindow(); return _instance; } } } }