예제 #1
0
        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();
        }
예제 #2
0
        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();
        }