private void Label_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)//şifremi unuttum { MainWindow.fBilgisi = "Doktor"; var ac = new YeniSifre(); ac.ShowDialog(); }
private void Label_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)//yenişifre { MainWindow.fBilgisi = "Hemsire"; var ac = new YeniSifre(); ac.ShowDialog(); }
public MainWindow() { InitializeComponent(); doktorGiris = new DoktorGiris(); doktorKayit = new DoktorKayit(); hastaDuzenle = new HastaDuzenle(); onayEkrani = new OnayEkrani(); hastaKabul = new HastaKabul(); hastaKayit = new HastaKayit(); hemsireGiris = new HemsireGiris(); hemsireKayit = new HemsireKayit(); monitörEkrani = new MonitorEkrani(); poliklinik = new Poliklinik(); yeniSifre = new YeniSifre(); doktorGiris.mainWindow = this; doktorKayit.mainWindow = this; hastaDuzenle.mainWindow = this; onayEkrani.mainWindow = this; hastaKabul.mainWindow = this; hastaKayit.mainWindow = this; hemsireGiris.mainWindow = this; hemsireKayit.mainWindow = this; monitörEkrani.mainWindow = this; poliklinik.mainWindow = this; yeniSifre.mainWindow = this; this.PreviewKeyDown += new KeyEventHandler(HandleEsc1); }