Exemplo n.º 1
0
 private void miInvoices_Click(object sender, RoutedEventArgs e)
 {
     Views.InvoicesWindow window = new InvoicesWindow();
     this.CpCurrentScreenContent.Content = window.Content;
     ResetMenuButtons();
     this.miInvoices.Background   = Brushes.LightSlateGray;
     this.LblContentTitle.Content = "Invoices";
 }
Exemplo n.º 2
0
        private void ViewInvoicesButton_Click(object sender, RoutedEventArgs e)
        {
            InvoicesWindow invoicesWindow = new InvoicesWindow();

            invoicesWindow.ShowDialog();
        }
Exemplo n.º 3
0
        private void OpenInvoicesWindow()
        {
            var invoicesWindow = new InvoicesWindow();

            invoicesWindow.Show();
        }