示例#1
0
        private void IsdalMainAbout_Click(object sender, System.EventArgs e)
        {
            FrmOptions About = new FrmOptions();

            About.TabOptions.TabPages.Remove(About.PageGeneral);
            About.Text = "About Ahmad Shaban";

            About.ShowDialog(this);
        }
示例#2
0
        private void IsdalMainOptions_Click(object sender, System.EventArgs e)
        {
            FrmOptions Options = new FrmOptions();

            Options.TabOptions.TabPages.Remove(Options.PageAbout);

            Options.Text = "Options";

            Options.ShowDialog(this);

            //We call it just for the of the immediate apply of the OnTop and the Doubleclicking the view Option
            ApplyFormOptions(false);
        }