Beispiel #1
0
        private void Form1_Load(object sender, EventArgs e)
        {
            Config.Load();

            Docs  = Documentation.LoadFromFile();
            Comms = Comments.LoadFromFile();
            LoadClasses();

            txtPath.Text = Config.Inst.InstallPath;

            lblRetType.ReferenceClick += LblRetType_ReferenceClick;
            lblVarType.ReferenceClick += LblRetType_ReferenceClick;

            splitContainer1.Panel2Collapsed = true;

            timerComment           = new TimeoutTimer(this);
            timerComment.Timeout  += TTimer_Timeout;
            timerComment.MaximumMS = 500;

            timerSearch           = new TimeoutTimer(this);
            timerSearch.Timeout  += TimerSearch_Timeout;
            timerSearch.MaximumMS = 500;
        }