public studentInfo(MySqlConnection connection, string id, studentSerch s) { globalConnection = connection; studentID = id; page = s; InitializeComponent(); bnd.bindCombobox(citizenship, globalConnection); }
public eviction(MySqlConnection connection, string t, studentInfo s, string ID, studentSerch p) { globalConnection = connection; type = t; id = ID; InitializeComponent(); window = s; page = p; }
private void testLabel4_MouseDoubleClick(object sender, MouseButtonEventArgs e) { int k = 0; if (testLabel3.Content.ToString() == "Есть временно выселенные проживающие ожидающие заселения") { k = 3; } studentSerch search_st = new studentSerch(globalConnection, k); this.NavigationService.Navigate(search_st); }
private void testLabel1_MouseDoubleClick(object sender, MouseButtonEventArgs e) { int k = 0; if (testLabel1.Content.ToString() == "Есть проживающие, у которых закончился период проживания") { k = 2; } if (testLabel1.Content.ToString() == "Есть проживающие, не оплатившие проживание") { k = 1; } if (testLabel1.Content.ToString() == "Есть временно выселенные проживающие ожидающие заселения") { k = 3; } studentSerch search_st = new studentSerch(globalConnection, k); this.NavigationService.Navigate(search_st); }
private void search_Student_Click(object sender, RoutedEventArgs e) { studentSerch search_st = new studentSerch(globalConnection); this.NavigationService.Navigate(search_st); }