1
This commit is contained in:
@@ -32,7 +32,7 @@ namespace Ink_Canvas.Windows.SettingsViews2.Pages
|
||||
if (settingsWindow != null)
|
||||
{
|
||||
// 调用NavigateToPage方法导航到启动页面
|
||||
settingsWindow.NavigateToPage("Startupa");
|
||||
settingsWindow.NavigateToPage("NewSettingStartup");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.Startupa"
|
||||
<Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.NewSettingStartup"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
+3
-3
@@ -16,11 +16,11 @@ using System.Windows.Shapes;
|
||||
namespace Ink_Canvas.Windows.SettingsViews2.Pages
|
||||
{
|
||||
/// <summary>
|
||||
/// Startup.xaml 的交互逻辑
|
||||
/// NewSettingStartup.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class Startupa : Page
|
||||
public partial class NewSettingStartup : Page
|
||||
{
|
||||
public Startupa()
|
||||
public NewSettingStartup()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
@@ -77,9 +77,9 @@
|
||||
</ui:NavigationViewItem.Icon>
|
||||
<ui:NavigationViewItem.MenuItems>
|
||||
<ui:NavigationViewItem
|
||||
x:Name="StartupaItem"
|
||||
x:Name="NewSettingStartupItem"
|
||||
Content="启动"
|
||||
Tag="Startupa"
|
||||
Tag="NewSettingStartup"
|
||||
ToolTipService.ToolTip="启动设置">
|
||||
<ui:NavigationViewItem.Icon>
|
||||
<ui:FontIcon Icon="{x:Static ui:SegoeFluentIcons.Play}"/>
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Ink_Canvas.Windows.SettingsViews2
|
||||
{ "Theme", typeof(Theme) },
|
||||
{ "Colors", typeof(Colors) },
|
||||
{ "Fonts", typeof(Fonts) },
|
||||
{ "Startupa", typeof(Startupa) },
|
||||
{ "NewSettingStartup", typeof(NewSettingStartup) },
|
||||
{ "About", typeof(About) },
|
||||
{ "Settings", typeof(SettingsPage) }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user