private void BtnSatınAlmaGorevlisi_Click(object sender, EventArgs e) { KullaniciGirisForm kullanici = new KullaniciGirisForm(); //kullanici giris formuna gorevli bilgisi gönderiyor txtKullanici.Text = "gorevli"; kullanici.kullaniciAdi = txtKullanici.Text; this.Hide(); kullanici.ShowDialog(); }
private void BtnYonetici_Click(object sender, EventArgs e) { KullaniciGirisForm kullanici = new KullaniciGirisForm(); //kullanici giris formuna yonetici bilgisi gönderiyor txtKullanici.Text = "yonetici"; kullanici.kullaniciAdi = txtKullanici.Text; this.Hide(); kullanici.ShowDialog(); }