mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
44 lines
2.2 KiB
XML
44 lines
2.2 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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="using:FluentAvalonia.UI.Controls"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="960"
|
|
d:DesignHeight="1000"
|
|
x:Class="LanMountainDesktop.Views.SettingsPages.PluginMarketSettingsPage">
|
|
|
|
<StackPanel x:Name="PluginMarketPanel"
|
|
MaxWidth="920"
|
|
Spacing="16">
|
|
<TextBlock x:Name="PluginMarketPanelTitleTextBlock"
|
|
IsVisible="False"
|
|
FontSize="24"
|
|
FontWeight="SemiBold"
|
|
Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
|
Text="Plugin Market" />
|
|
|
|
<TextBlock x:Name="PluginMarketPanelSubtitleTextBlock"
|
|
Foreground="{DynamicResource TextFillColorSecondaryBrush}"
|
|
TextWrapping="Wrap"
|
|
Text="Browse plugins from the official LanAirApp source, review package details, and stage installations safely." />
|
|
|
|
<Border Classes="settings-expander-shell"
|
|
Padding="16,14">
|
|
<StackPanel Spacing="10">
|
|
<TextBlock x:Name="PluginMarketSectionTitleTextBlock"
|
|
FontSize="16"
|
|
FontWeight="SemiBold"
|
|
Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
|
Text="Official Source" />
|
|
<TextBlock x:Name="PluginMarketSectionHintTextBlock"
|
|
Foreground="{DynamicResource TextFillColorSecondaryBrush}"
|
|
TextWrapping="Wrap"
|
|
Text="The content below is loaded from the official market source. If network loading fails, the module will keep the page alive and show a recoverable error state instead of crashing." />
|
|
<ContentControl x:Name="PluginMarketContentHost" />
|
|
</StackPanel>
|
|
</Border>
|
|
</StackPanel>
|
|
</UserControl>
|
|
|