1
This commit is contained in:
@@ -32,7 +32,7 @@ namespace Ink_Canvas.Windows.SettingsViews2.Pages
|
|||||||
if (settingsWindow != null)
|
if (settingsWindow != null)
|
||||||
{
|
{
|
||||||
// 调用NavigateToPage方法导航到启动页面
|
// 调用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="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"
|
||||||
+3
-3
@@ -16,11 +16,11 @@ using System.Windows.Shapes;
|
|||||||
namespace Ink_Canvas.Windows.SettingsViews2.Pages
|
namespace Ink_Canvas.Windows.SettingsViews2.Pages
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Startup.xaml 的交互逻辑
|
/// NewSettingStartup.xaml 的交互逻辑
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class Startupa : Page
|
public partial class NewSettingStartup : Page
|
||||||
{
|
{
|
||||||
public Startupa()
|
public NewSettingStartup()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
</ui:NavigationViewItem.Icon>
|
</ui:NavigationViewItem.Icon>
|
||||||
<ui:NavigationViewItem.MenuItems>
|
<ui:NavigationViewItem.MenuItems>
|
||||||
<ui:NavigationViewItem
|
<ui:NavigationViewItem
|
||||||
x:Name="StartupaItem"
|
x:Name="NewSettingStartupItem"
|
||||||
Content="启动"
|
Content="启动"
|
||||||
Tag="Startupa"
|
Tag="NewSettingStartup"
|
||||||
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) },
|
||||||
{ "Startupa", typeof(Startupa) },
|
{ "NewSettingStartup", typeof(NewSettingStartup) },
|
||||||
{ "About", typeof(About) },
|
{ "About", typeof(About) },
|
||||||
{ "Settings", typeof(SettingsPage) }
|
{ "Settings", typeof(SettingsPage) }
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user