Files
hoodFieldOfView/头罩视野slove/头罩视野/Views/ChangeLanguage.xaml.cs
2026-04-18 18:14:12 +08:00

39 lines
909 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
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 .Views
{
/// <summary>
/// ChangeLanguage.xaml 的交互逻辑
/// </summary>
public partial class ChangeLanguage : Page
{
public ChangeLanguage()
{
InitializeComponent();
}
private void SW_2_Click(object sender, RoutedEventArgs e)
{
}
private void BtnGoNextPage_Click(object sender, RoutedEventArgs e)
{
// 跳转到你要去的页面(比如 MainTestPage
NavigationService?.Navigate(new MainWindow());
}
}
}