🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Burak HABER / C# / 62. Formlar Arası Geçiş

1-) C# - 62. Formlar Arası Geçiş

using System;

using System.Windows.Forms;

 

namespace _62.Formlar_Arasi_Gecis

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void button2_Click(object sender, EventArgs e)

        {

            Form2 fr = new Form2();

            fr.Show();

            //this.Hide();

        }

    }

}

 2021 Mart 11 Perşembe
 439