示例#1
0
        private void PorkOne_Click(object sender, EventArgs e)
        {
            // Code to take you to a specific form within the Project, Just rename form1 to desired location, also hides
            PorkLinkOne f1 = new PorkLinkOne(); // Going back to the "home page"

            f1.Show();
        }
示例#2
0
        private void linkLabel5_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Hide();                        // Code to take you to a specific form within the Project, Just rename form1 to desired location, also hides
            PorkLinkOne f1 = new PorkLinkOne(); // Going back to the "home page"

            f1.Show();
        }