/// <summary> /// Yeni bir kullanıcı eklemek için tanımlanan buton /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnYeniKullaniciEkle_Click(object sender, EventArgs e) { if (newRecord == false) { UIUser user = new UIUser(); user.Show(); user.MdiParent = this.MdiParent; user.Location = new Point(300, 15); user.updatedInsertedButton.Text = "Kaydet"; newRecord = true; } }
public void OpenUIUserForm() { UserForCode = cmbKullaniciKodu.Text; UIUser user = new UIUser(); user.MdiParent = this.MdiParent; user.Show(); user.Location = new Point(200, 15); user.updatedInsertedButton.Text = "Güncelle"; user.DoreadOnly.ReadOnly = true; user.LoadDataInUserInformation(UserForCode); }