Files
community/Ink Canvas/Windows/SettingsViews/Pages/StartupPage.xaml
T

107 lines
5.6 KiB
XML
Raw Normal View History

2026-04-07 23:32:20 +08:00
<ui:Page x:Class="Ink_Canvas.Windows.SettingsViews.Pages.StartupPage"
2026-03-29 12:38:46 +08:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2026-04-24 10:24:20 +08:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
2026-04-05 21:50:53 +08:00
xmlns:local="clr-namespace:Ink_Canvas.Windows.SettingsViews.Pages"
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
xmlns:i18n="clr-namespace:Ink_Canvas.MarkupExtensions"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
2026-04-18 22:32:08 +08:00
xmlns:controls="clr-namespace:Ink_Canvas.Controls;assembly=InkCanvas.Controls"
2026-04-19 14:42:11 +08:00
mc:Ignorable="d"
2026-04-24 10:24:20 +08:00
2026-03-29 17:39:52 +08:00
Title="启动">
2026-03-29 12:38:46 +08:00
2026-04-07 23:58:17 +08:00
<ScrollViewer PanningMode="VerticalFirst">
<Grid Margin="59,0,59,0">
<FrameworkElement.Resources>
<sys:Double x:Key="SettingsCardSpacing">4</sys:Double>
<Style x:Key="SettingsSectionHeaderTextBlockStyle"
BasedOn="{StaticResource BodyStrongTextBlockStyle}"
TargetType="TextBlock">
<Style.Setters>
<Setter Property="Margin" Value="1,30,0,6" />
</Style.Setters>
</Style>
</FrameworkElement.Resources>
2026-04-07 23:58:17 +08:00
<Grid>
<ikw:SimpleStackPanel MaxWidth="1000"
HorizontalAlignment="Stretch"
Spacing="{StaticResource SettingsCardSpacing}">
2026-04-04 11:33:47 +08:00
2026-04-07 23:58:17 +08:00
<!-- 启动设置 -->
<TextBlock Style="{StaticResource SettingsSectionHeaderTextBlockStyle}"
Text="启动设置" />
2026-04-04 11:33:47 +08:00
2026-04-07 23:58:17 +08:00
<!-- 开机时运行 -->
2026-04-18 22:32:08 +08:00
<controls:LabeledSettingsCard x:Name="CardRunAtStartup"
Header="{i18n:I18n Key=Startup_RunAtStartup}"
Description="{i18n:I18n Key=Startup_RunAtStartupHint}"
Icon="{x:Static ui:SegoeFluentIcons.Settings}"
SwitchName="ToggleSwitchRunAtStartup"
Toggled="ToggleSwitchRunAtStartup_Toggled" />
2026-04-04 11:33:47 +08:00
2026-04-07 23:58:17 +08:00
<!-- 开机运行后收纳到侧边栏 -->
2026-04-18 22:32:08 +08:00
<controls:LabeledSettingsCard x:Name="CardFoldAtStartup"
Header="{i18n:I18n Key=Startup_FoldAtStartup}"
Description="{i18n:I18n Key=Startup_FoldAtStartupHint}"
Icon="{x:Static ui:SegoeFluentIcons.ChevronLeft}"
SwitchName="ToggleSwitchFoldAtStartup"
Toggled="ToggleSwitchFoldAtStartup_Toggled" />
2026-04-19 14:42:11 +08:00
<!-- 外部协议调用 -->
<controls:LabeledSettingsCard x:Name="CardExternalProtocol"
Header="{i18n:I18n Key=Startup_ExternalProtocol}"
Description="{i18n:I18n Key=Startup_ExternalProtocolHint}"
Icon="{x:Static ui:SegoeFluentIcons.Link}"
SwitchName="ToggleSwitchExternalProtocol"
Toggled="ToggleSwitchExternalProtocol_Toggled" />
2026-04-19 14:42:11 +08:00
<!-- 运行模式 -->
2026-04-07 23:58:17 +08:00
<TextBlock Style="{StaticResource SettingsSectionHeaderTextBlockStyle}"
2026-04-19 14:42:11 +08:00
Text="{i18n:I18n Key=Settings_ModeDesc_1}" />
2026-04-04 15:40:36 +08:00
2026-04-19 14:42:11 +08:00
<controls:LabeledSettingsCard x:Name="CardPPTOnlyMode"
Header="{i18n:I18n Key=Mode_PPTOnly}"
Description="{i18n:I18n Key=Settings_ModeDesc}"
Icon="{x:Static ui:SegoeFluentIcons.Settings}"
SwitchName="ToggleSwitchPPTOnlyMode"
Toggled="ToggleSwitchPPTOnlyMode_Toggled" />
2026-04-05 17:31:15 +08:00
<!-- 笔尖模式 -->
<TextBlock Style="{StaticResource SettingsSectionHeaderTextBlockStyle}"
Text="{i18n:I18n Key=Startup_EnableNibMode}" />
<controls:LabeledSettingsCard x:Name="CardEnableNibMode"
Header="{i18n:I18n Key=Startup_EnableNibMode}"
Description="{i18n:I18n Key=Startup_EnableNibModeHint}"
Icon="{x:Static ui:SegoeFluentIcons.TouchPointer}"
SwitchName="ToggleSwitchEnableNibMode"
Toggled="ToggleSwitchEnableNibMode_Toggled" />
<!-- 崩溃后操作 -->
<TextBlock Style="{StaticResource SettingsSectionHeaderTextBlockStyle}"
Text="{i18n:I18n Key=Crash_Title}" />
<ui:SettingsCard Header="{i18n:I18n Key=Crash_Title}"
Description="{i18n:I18n Key=Crash_Desc}">
<ui:SettingsCard.HeaderIcon>
<ui:FontIcon Icon="{x:Static ui:SegoeFluentIcons.Warning}" />
</ui:SettingsCard.HeaderIcon>
<ComboBox x:Name="ComboBoxCrashAction"
SelectionChanged="ComboBoxCrashAction_SelectionChanged">
<ComboBoxItem Content="{i18n:I18n Key=Crash_SilentRestart}" Tag="0" />
<ComboBoxItem Content="{i18n:I18n Key=Crash_NoAction}" Tag="1" />
</ComboBox>
</ui:SettingsCard>
2026-04-07 23:58:17 +08:00
<!-- 底部空白 -->
<Rectangle Height="48" />
2026-04-04 11:33:47 +08:00
2026-04-07 23:58:17 +08:00
</ikw:SimpleStackPanel>
</Grid>
</Grid>
</ScrollViewer>
2026-04-07 23:32:20 +08:00
</ui:Page>