private void SectionLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            SectionControl scc = new SectionControl();

            this.Hide();
            scc.Show();
        }
Example #2
0
        private void Sectionlb_Click(object sender, EventArgs e)
        {
            SectionControl sn = new SectionControl();

            sn.Show();
            this.Hide();
        }