C# KODU
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication15
{
public partial class Form1 : Form
{
Form2 frm = new Form2(); //Öncelikle bir değişken tanımlıyoruz...
//Yeni Form eklemek Project Menüsünden Add Windows Form'a tıklıyoruz,
//karşımıza gelen ekranda Add diyerek yeni bir Form ekliyoruz
//Project/Add Windows Form//Add
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
frm.Show(); //Button'a tıkladığımız zaman form2'ye geçmesini sağlıyoruz
//this.Hide(); //Form2 açıldıktan sonra FORM1'ri gizliyebiliriz.
}
}
}
Hiç yorum yok:
Yorum Gönder