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

26 lines
1.2 KiB
XML
Raw Normal View History

2026-04-10 01:24:57 +08:00
<ui:Page
x:Class="Ink_Canvas.Windows.SettingsViews.Pages.PluginPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
Title="插件"
mc:Ignorable="d">
2026-04-10 12:14:23 +08:00
<ScrollViewer VerticalScrollBarVisibility="Auto" PanningMode="VerticalFirst">
<Grid Margin="59,0,59,0">
2026-04-10 01:24:57 +08:00
<StackPanel Margin="24">
<TextBlock Text="🎨 插件管理" Style="{DynamicResource TitleTextBlockStyle}" Margin="0,0,0,16" />
2026-04-10 12:14:23 +08:00
2026-04-10 01:24:57 +08:00
<Border x:Name="StatusBorder" Background="{DynamicResource InfoAcrylicFillColorDefaultBrush}" Padding="12" CornerRadius="8" Margin="0,0,0,20">
<TextBlock x:Name="PluginCountText" Text="正在加载插件..." Foreground="{DynamicResource InfoTextFillColorPrimaryBrush}" />
</Border>
2026-04-10 12:14:23 +08:00
2026-04-10 01:24:57 +08:00
<StackPanel x:Name="PluginContainer" />
</StackPanel>
2026-04-10 12:14:23 +08:00
</Grid>
</ScrollViewer>
2026-04-10 01:24:57 +08:00
</ui:Page>