コード例 #1
0
ファイル: SimpleSGLEditor.cs プロジェクト: Bannersean/osu-sgl
        public SimpleSGLEditor()
        {
            InitializeComponent();
            SetSyntaxHighlighting();

            // Start update check thread
            UpdateCheck updateObj = new UpdateCheck(this);
            Thread updateChecker = new Thread(updateObj.DoWork);
            updateChecker.CurrentUICulture = new System.Globalization.CultureInfo("en-US");
            updateChecker.Start();
        }