我服了

This commit is contained in:
PrefacedCorg
2026-03-31 00:25:08 +08:00
parent e0f35450e1
commit a2f21357b6
5 changed files with 7 additions and 7 deletions
@@ -32,7 +32,7 @@ namespace Ink_Canvas.Windows.SettingsViews2.Pages
if (settingsWindow != null) if (settingsWindow != null)
{ {
// 调用NavigateToPage方法导航到启动页面 // 调用NavigateToPage方法导航到启动页面
settingsWindow.NavigateToPage("Startup"); settingsWindow.NavigateToPage("Startupa");
} }
} }
} }
@@ -1,4 +1,4 @@
<Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.Startup" <Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.Startupa"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
@@ -18,9 +18,9 @@ namespace Ink_Canvas.Windows.SettingsViews2.Pages
/// <summary> /// <summary>
/// Startup.xaml 的交互逻辑 /// Startup.xaml 的交互逻辑
/// </summary> /// </summary>
public partial class Startup : Page public partial class Startupa : Page
{ {
public Startup() public Startupa()
{ {
InitializeComponent(); InitializeComponent();
} }
@@ -77,9 +77,9 @@
</ui:NavigationViewItem.Icon> </ui:NavigationViewItem.Icon>
<ui:NavigationViewItem.MenuItems> <ui:NavigationViewItem.MenuItems>
<ui:NavigationViewItem <ui:NavigationViewItem
x:Name="StartupItem" x:Name="StartupaItem"
Content="启动" Content="启动"
Tag="Startup" Tag="Startupa"
ToolTipService.ToolTip="启动设置"> ToolTipService.ToolTip="启动设置">
<ui:NavigationViewItem.Icon> <ui:NavigationViewItem.Icon>
<ui:FontIcon Icon="{x:Static ui:SegoeFluentIcons.Play}"/> <ui:FontIcon Icon="{x:Static ui:SegoeFluentIcons.Play}"/>
@@ -28,7 +28,7 @@ namespace Ink_Canvas.Windows.SettingsViews2
{ "Theme", typeof(Theme) }, { "Theme", typeof(Theme) },
{ "Colors", typeof(Colors) }, { "Colors", typeof(Colors) },
{ "Fonts", typeof(Fonts) }, { "Fonts", typeof(Fonts) },
{ "Startup", typeof(Startup) }, { "Startupa", typeof(Startupa) },
{ "About", typeof(About) }, { "About", typeof(About) },
{ "Settings", typeof(SettingsPage) } { "Settings", typeof(SettingsPage) }
}; };