19 lines
1000 B
Plaintext
19 lines
1000 B
Plaintext
|
|
<Page x:Class="BetterSeewoManager.Pages.ConvertPage"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
Background="Transparent">
|
||
|
|
|
||
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto" Padding="24">
|
||
|
|
<StackPanel MaxWidth="700" Margin="0,16">
|
||
|
|
<TextBlock Text="格式转换" FontSize="22" FontWeight="SemiBold" Foreground="{StaticResource TextPrimaryBrush}" Margin="0,0,0,4"/>
|
||
|
|
<TextBlock Text="PPTX 与 ENBX 格式互转" FontSize="13" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,0,0,20"/>
|
||
|
|
|
||
|
|
<Border Background="{StaticResource CardBrush}" CornerRadius="{StaticResource CornerRadiusMedium}" Padding="20">
|
||
|
|
<StackPanel>
|
||
|
|
<TextBlock Text="功能开发中..." FontSize="14" Foreground="{StaticResource TextSecondaryBrush}"/>
|
||
|
|
</StackPanel>
|
||
|
|
</Border>
|
||
|
|
</StackPanel>
|
||
|
|
</ScrollViewer>
|
||
|
|
</Page>
|