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; namespace FLY.IntegratedControl.UI.Client { /// <summary> /// Page_Menu.xaml 的交互逻辑 /// </summary> public partial class Page_Menu : Page { public Page_Menu() { InitializeComponent(); } private void button_custom_Click(object sender, RoutedEventArgs e) { } private void button_system_Click(object sender, RoutedEventArgs e) { Page_System p = new Page_System(); NavigationService.Navigate(p); } private void button_error_Click(object sender, RoutedEventArgs e) { Page_ErrorTable p = new Page_ErrorTable(); NavigationService.Navigate(p); } private void button_version_Click(object sender, RoutedEventArgs e) { } } }