コード例 #1
0
ファイル: Form1.cs プロジェクト: Abhinavchamallamudi/c-hash
        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();
        }