36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
|
|
//using DateRecordView;
|
|||
|
|
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;
|
|||
|
|
using 头罩视野.Views;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace 头罩视野
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public partial class MainWindow : Window
|
|||
|
|
{
|
|||
|
|
public MainWindow()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
//MainFrame.Content = new Views.ChangeLanguage();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
//private void GoHome(object s, RoutedEventArgs e) => MainFrame.Content = new Views.ChangeLanguage();
|
|||
|
|
private void GoTest(object s, RoutedEventArgs e) => MainFrame.Content = new Views.PageTest();
|
|||
|
|
private void GoRecord(object s, RoutedEventArgs e) => MainFrame.Content = new Views.RecordDate();
|
|||
|
|
private void GoView(object s, RoutedEventArgs e) => MainFrame.Content = new Views.RecordPage();
|
|||
|
|
|
|||
|
|
private void GoVisiPage(object s, RoutedEventArgs e) => MainFrame.Content = new Views.VisiData();
|
|||
|
|
|
|||
|
|
//NavigationService.Navigate(new Views.RecordDate()); 页面相互跳转
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|