28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
|
|
<Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.Basic"
|
||
|
|
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"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:local="clr-namespace:Ink_Canvas.Windows.SettingsViews2.Pages"
|
||
|
|
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="450" d:DesignWidth="800"
|
||
|
|
Title="基本">
|
||
|
|
|
||
|
|
<Grid Margin="24">
|
||
|
|
<StackPanel>
|
||
|
|
<TextBlock Text="基本设置" Style="{DynamicResource TitleTextBlockStyle}" Margin="0,0,0,16" />
|
||
|
|
|
||
|
|
<ui:SettingsCard
|
||
|
|
Header="启动设置"
|
||
|
|
Description="点击跳转到启动设置页面"
|
||
|
|
IsClickEnabled="True"
|
||
|
|
Click="SettingsCard_Click">
|
||
|
|
<ui:SettingsCard.ActionIcon>
|
||
|
|
<ui:FontIcon Icon="{x:Static ui:SegoeFluentIcons.Play}"/>
|
||
|
|
</ui:SettingsCard.ActionIcon>
|
||
|
|
</ui:SettingsCard>
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</Page>
|