public SPpage()
        {
            InitializeComponent();
            VendorPage vp = new VendorPage();

            vendorframe.NavigationService.Navigate(vp);
            CustomerTab cl = new CustomerTab();

            customerFrame.NavigationService.Navigate(cl);
            StockPage sp = new StockPage();

            frameStock.NavigationService.Navigate(sp);
            ExpenseAccountPage eap = new ExpenseAccountPage();

            ExpenseFrame.NavigationService.Navigate(eap);
            ChartPage cp = new ChartPage();

            chartFrame.NavigationService.Navigate(cp);
        }
Esempio n. 2
0
        private void btn_Back_Click(object sender, RoutedEventArgs e)
        {
            VendorPage vp = new VendorPage();

            this.NavigationService.Navigate(vp);
        }
Esempio n. 3
0
        private void CommandBinding_Executed_9(object sender, ExecutedRoutedEventArgs e)
        {
            VendorPage vp = new VendorPage();

            frame.NavigationService.Navigate(vp);
        }