/// <summary> /// opening the next window ( update contract ) /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Click_contract(object sender, RoutedEventArgs e) { Window nextWindow = new UpdateDataWindow("contract"); this.Close(); nextWindow.Show(); }
/// <summary> /// opening the next window ( update mother ) /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Click_mother(object sender, RoutedEventArgs e) { Window nextWindow = new UpdateDataWindow("mother"); this.Close(); nextWindow.Show(); }
/// <summary> /// opening the next window ( update nanny ) /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Click_nanny(object sender, RoutedEventArgs e) { Window nextWindow = new UpdateDataWindow("nanny"); nextWindow.Height = 900; nextWindow.Width = 900; this.Close(); nextWindow.Show(); }