PgMenu.xaml.cs 1.24 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

潘栩锋's avatar
潘栩锋 committed
16
namespace FLY.Integrated.UI.Client
17 18 19 20
{
    /// <summary>
    /// Page_Menu.xaml 的交互逻辑
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
21
    public partial class PgMenu : Page
22
    {
潘栩锋's avatar
潘栩锋 committed
23
        public PgMenu()
24 25 26 27 28 29
        {
            InitializeComponent();
        }



潘栩锋's avatar
潘栩锋 committed
30
        private void btnIbcSettingClick(object sender, RoutedEventArgs e)
31
        {
潘栩锋's avatar
潘栩锋 committed
32 33
            PgIbcSetting p = new PgIbcSetting();
            p.Init();
34 35 36
            NavigationService.Navigate(p);
        }

潘栩锋's avatar
潘栩锋 committed
37
        private void btnErrorClick(object sender, RoutedEventArgs e)
38
        {
潘栩锋's avatar
潘栩锋 committed
39 40
            PgErrorTable p = new PgErrorTable();
            p.Init();
41 42 43
            NavigationService.Navigate(p);
        }

潘栩锋's avatar
潘栩锋 committed
44
        private void btnAccessoryClick(object sender, RoutedEventArgs e)
45
        {
潘栩锋's avatar
潘栩锋 committed
46 47 48
            PgAccessorySetting p = new PgAccessorySetting();
            p.Init();
            NavigationService.Navigate(p);
49 50 51
        }
    }
}