private void Button_Click(object sender, RoutedEventArgs e)
        {
            MedicineDetailsInfoWindow cd2 = new MedicineDetailsInfoWindow(medName);

            cd2.ShowDialog();
        }
Esempio n. 2
0
        private void lblMedicine_MouseDown(object sender, MouseButtonEventArgs e)
        {
            MedicineDetailsInfoWindow medicineDetailsInfoWind = new MedicineDetailsInfoWindow(medName);

            medicineDetailsInfoWind.ShowDialog();
        }