예제 #1
0
        private void chart3_Click(object sender, EventArgs e)
        {
            this.Hide();
            chart3 c = new chart3();

            c.ShowDialog();
            this.Show();
        }
예제 #2
0
파일: Form1.cs 프로젝트: kiranvunnam/dotnet
        //Button click function which redirects to chart 3(column chart)
        private void button3_Click(object sender, EventArgs e)
        {
            this.Hide();
            chart3 ch3 = new chart3();

            ch3.ShowDialog();
            this.Close();
        }