deeb25a2| 1 | <views:PointerTrackingWindow xmlns="https://github.com/avaloniaui" |
| 2 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 3 | xmlns:vm="using:CascadeIDE.ViewModels" |
| 4 | xmlns:views="using:CascadeIDE.Views" |
| 5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 6 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 7 | mc:Ignorable="d" |
| 8 | x:Class="CascadeIDE.Views.SettingsWindow" |
| 9 | x:DataType="vm:MainWindowViewModel" |
| 10 | Title="Настройки" |
| 11 | Width="760" Height="640" |
| 12 | MinWidth="560" MinHeight="480" |
| 13 | Background="{DynamicResource CascadeTheme.MainWindowBackground}" |
| 14 | WindowStartupLocation="CenterOwner"> |
| 15 | |
| 16 | <DockPanel Margin="12"> |
| 17 | <Button x:Name="CloseButton" |
| 18 | DockPanel.Dock="Bottom" |
| 19 | Content="Закрыть" |
| 20 | HorizontalAlignment="Right" |
| 21 | MinWidth="100" |
| 22 | Margin="0,12,0,0" |
| 23 | Padding="10,6"/> |
| 24 | <views:SettingsShellView/> |
| 25 | </DockPanel> |
| 26 | </views:PointerTrackingWindow> |
| 27 | |
View only · write via MCP/CIDE