Exemple #1
0
        private void Book_Button_Click(object sender, RoutedEventArgs e)
        {
            ManageBookInformationWindow manageBookInformationWindow = new ManageBookInformationWindow(this, Name);

            manageBookInformationWindow.Show();
            this.Close();
        }
Exemple #2
0
 public MainMenuWindow(ManageBookInformationWindow manageBookInformationWindow, string name)
 {
     InitializeComponent();
     Name         = name;
     txtName.Text = Name;
 }