示例#1
0
 void Temizle()
 {
     foreach (Control ct in splitContainer1.Panel2.Controls)
     {
         if (ct is TextBox || ct is ComboBox)
         {
             ct.Text = "";
         }
     }
     Liste.Rows.Clear();
     _edit             = false;
     txtGirisKodu.Text = _n.GirisKod();
     AnaSayfa.Aktarma  = -1;
     Genel();//lblGenelNo.Text = _n.Genel();
 }