mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
41 lines
2.2 KiB
XML
41 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"
|
|
xmlns:fi="using:FluentIcons.Avalonia.Fluent"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="1000"
|
|
x:Class="LanMountainDesktop.Views.SettingsPages.LauncherSettingsPage">
|
|
|
|
<StackPanel x:Name="LauncherSettingsPanel" Spacing="16">
|
|
<TextBlock x:Name="LauncherSettingsPanelTitleTextBlock"
|
|
FontSize="24"
|
|
FontWeight="SemiBold"
|
|
Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
|
Text="App Launcher" />
|
|
|
|
<Border Classes="settings-expander-shell">
|
|
<ui:SettingsExpander x:Name="LauncherHiddenItemsSettingsExpander"
|
|
Header="Hidden Items"
|
|
Description="Review hidden launcher entries and show them again."
|
|
IsExpanded="True">
|
|
<ui:SettingsExpander.IconSource>
|
|
<ui:FontIconSource Glyph="" FontFamily="{StaticResource SymbolThemeFontFamily}" />
|
|
</ui:SettingsExpander.IconSource>
|
|
<ui:SettingsExpander.Footer>
|
|
<StackPanel Spacing="10">
|
|
<TextBlock x:Name="LauncherHiddenItemsDescriptionTextBlock"
|
|
Foreground="{DynamicResource TextFillColorSecondaryBrush}"
|
|
Text="Right-click an icon in launcher to hide it. Hidden entries appear here." />
|
|
<TextBlock x:Name="LauncherHiddenItemsEmptyTextBlock"
|
|
IsVisible="False"
|
|
Foreground="{DynamicResource TextFillColorSecondaryBrush}"
|
|
Text="No hidden items." />
|
|
</StackPanel>
|
|
</ui:SettingsExpander.Footer>
|
|
</ui:SettingsExpander>
|
|
</Border>
|
|
</StackPanel>
|
|
</UserControl>
|
|
|