using System; using System.Collections.Generic; using System.Linq; using System.Text; 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.FeedbackRenZiJia.UI.Client { /// <summary> /// Page_Menu.xaml 的交互逻辑 /// </summary> public partial class Page_Menu : Page { public Page_Menu() { InitializeComponent(); } private void button_set_Click(object sender, RoutedEventArgs e) { NavigationService ns = Application.Current.Properties["NavigationService"] as NavigationService; if (ns != null) { Page_Setup p = new Page_Setup(); ns.Navigate(p); } } private void button_heatlist_Click(object sender, RoutedEventArgs e) { NavigationService ns = Application.Current.Properties["NavigationService"] as NavigationService; if (ns != null) { Page_HeatList p = new Page_HeatList(); //p.Init() ns.Navigate(p); } } private void button_version_Click(object sender, RoutedEventArgs e) { } } }