AutoWikiBrowser.ExternalProgram.ExternalProgram_Load C# (CSharp) Метод

ExternalProgram_Load() приватный Метод

private ExternalProgram_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
        private void ExternalProgram_Load(object sender, EventArgs e)
        {
            groupBox1.Enabled = chkSkip.Enabled = chkEnabled.Checked;
            WikiFunctions.Controls.AWBToolTip tip = new WikiFunctions.Controls.AWBToolTip();

            string tooltip = "If you need a parameter of the actual article text, please use \"%%articletext%%\". If you want to use the value of the Input/Output file, please use \"%%file%%\"";
            tip.SetToolTip(txtParameters, tooltip);
            tip.SetToolTip(radParameter, tooltip);

            tooltip = "This is the file that AWB will output to if necessary, and also the file it will try and read back in";
            tip.SetToolTip(txtFile, tooltip);
            tip.SetToolTip(label4, tooltip);
        }