Exemple #1
0
		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();
		}