示例#1
0
        public MainForm()
        {
            InitializeComponent();

            //Show the Disclaimer! With a checkbox -> save the preference to settings
            if (Properties.Settings.Default.ShowStartAd == true)
            {
                FormDisclaimer frm = new FormDisclaimer();
                frm.ShowDialog();
            }

            //Debug console
            this._log_console = this.textBoxDebug;

            //Fill Comboboxes
            this.FillComboBoxes();

            //Lets initialize the dialog
            this.Initialize();
        }
示例#2
0
        public MainForm()
        {
            InitializeComponent();

            //Show the Disclaimer! With a checkbox -> save the preference to settings
            if (Properties.Settings.Default.ShowStartAd == true)
            {
                FormDisclaimer frm = new FormDisclaimer();
                frm.ShowDialog();
            }

            //Debug console
            this._log_console = this.textBoxDebug;

            //Fill Comboboxes
            this.FillComboBoxes();

            //Lets initialize the dialog
            this.Initialize();
        }