Forge
deeb25a2
1<UserControl xmlns="https://github.com/avaloniaui"
2 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
3 xmlns:vm="using:CascadeIDE.ViewModels"
4 x:Class="CascadeIDE.Views.SettingsThemesPanelView"
5 x:DataType="vm:MainWindowViewModel">
6 <StackPanel Spacing="12">
7 <TextBlock Text="Пресеты в Themes/*.json (формат ide_get_ui_theme / ide_set_ui_theme). Значения в settings.toml не хранятся."
8 Foreground="{DynamicResource CascadeTheme.ChatLabelForeground}"
9 TextWrapping="Wrap"
10 FontSize="12"/>
11 <StackPanel Spacing="6">
12 <TextBlock Text="Быстрые пресеты:" Foreground="{DynamicResource CascadeTheme.ChatLabelForeground}"/>
13 <WrapPanel Orientation="Horizontal">
14 <Button Content="Тёмная" Margin="0,0,8,8" Padding="10,5" Command="{Binding ApplyDarkThemeCommand}"/>
15 <Button Content="Светлая" Margin="0,0,8,8" Padding="10,5" Command="{Binding ApplyLightThemeCommand}"/>
16 <Button Content="Cursor-like" Margin="0,0,8,8" Padding="10,5" Command="{Binding ApplyCursorLikeThemeCommand}"/>
17 <Button Content="Power classic" Margin="0,0,8,8" Padding="10,5" Command="{Binding ApplyPowerClassicThemeCommand}"/>
18 </WrapPanel>
19 </StackPanel>
20 <Button Content="Открыть JSON с диска…" HorizontalAlignment="Left" Padding="10,5" Command="{Binding OpenThemeFileCommand}"/>
21 <StackPanel Spacing="6">
22 <TextBlock Text="Файлы в каталоге Themes:" Foreground="{DynamicResource CascadeTheme.ChatLabelForeground}"/>
23 <ListBox x:Name="ThemeFilesList" MinHeight="120" MaxHeight="220"/>
24 </StackPanel>
25 </StackPanel>
26</UserControl>
27
View only · write via MCP/CIDE