示例#1
0
        private mainForm(bool gotArgs)
        {
            this.gotArgs = gotArgs;

            InitializeComponent();
            Settings.Update();
            init();

            if (Settings.chbCheckUpdatesAtStartUp)
            {
                updateForm uf = new updateForm(this);
                uf.StartUpdate();
            }
        }
示例#2
0
        public void UpdateCheck()
        {
            updateForm uf = new updateForm(this);

            uf.ShowDialog();
        }