diff --git "a/OTOB\303\234S B\304\260LET\304\260 UYGULAMASI PROJES\304\260/KayitFormu.cs" "b/OTOB\303\234S B\304\260LET\304\260 UYGULAMASI PROJES\304\260/KayitFormu.cs" index aeb7796..c7213f2 100644 --- "a/OTOB\303\234S B\304\260LET\304\260 UYGULAMASI PROJES\304\260/KayitFormu.cs" +++ "b/OTOB\303\234S B\304\260LET\304\260 UYGULAMASI PROJES\304\260/KayitFormu.cs" @@ -1,11 +1,4 @@ -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; using System.Windows.Forms; namespace OTOBÜS_BİLETİ_UYGULAMASI_PROJESİ @@ -19,15 +12,14 @@ public KayitFormu() private void btnCancel_Click(object sender, EventArgs e) { - this.DialogResult = DialogResult.Cancel; - this.Close(); - + DialogResult = DialogResult.Cancel; + Close(); } private void btnOkey_Click(object sender, EventArgs e) { - this.DialogResult = DialogResult.OK; - this.Close(); + DialogResult = DialogResult.OK; + Close(); } } }