コード例 #1
0
        /// <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();
        }
コード例 #2
0
        /// <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();
        }
コード例 #3
0
        /// <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();
        }