Show folder names immediately and refresh stale index sizes without walking the whole drive.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
19
src/Explorer.App/Settings/Pages/AppearanceSettingsPage.xaml
Normal file
19
src/Explorer.App/Settings/Pages/AppearanceSettingsPage.xaml
Normal file
@@ -0,0 +1,19 @@
|
||||
<UserControl x:Class="Explorer.App.Settings.Pages.AppearanceSettingsPage"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
DataContext="{Binding Draft, RelativeSource={RelativeSource AncestorType=Window}}">
|
||||
<StackPanel>
|
||||
<TextBlock Text="Appearance" Style="{StaticResource SettingsHeading}"
|
||||
AutomationProperties.HeadingLevel="Level1"/>
|
||||
<TextBlock Style="{StaticResource SettingsIntro}"
|
||||
Text="Visual options for Explorer Workbench."/>
|
||||
|
||||
<TextBlock Text="Theme" Foreground="{DynamicResource FgMuted}" Margin="0,0,0,8"/>
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<RadioButton Content="Dark" GroupName="SettingsTheme" Margin="0,0,16,0"
|
||||
IsChecked="{Binding IsDarkTheme, Mode=TwoWay}"/>
|
||||
<RadioButton Content="Light" GroupName="SettingsTheme"
|
||||
IsChecked="{Binding IsLightTheme, Mode=TwoWay}"/>
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
</UserControl>
|
||||
Reference in New Issue
Block a user