IndentSettings.xaml 1.2 KB

123456789101112131415161718
  1. <Window x:Class="MPE.IndentSettings"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:MPE"
  7. mc:Ignorable="d"
  8. Title="Настройка отступов" Height="110.111" Width="399.732" MouseLeftButtonDown="Window_MouseLeftButtonDown">
  9. <Grid>
  10. <GroupBox Header="[IF]" HorizontalAlignment="Left" Height="52" Margin="10,10,0,0" VerticalAlignment="Top" Width="175">
  11. <CheckBox x:Name="IFAutoIndentCB" Content="Автооступ после [IF]" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" FontSize="14" Click="IFAutoIndentCB_Click"/>
  12. </GroupBox>
  13. <GroupBox Header="[ELSE]" HorizontalAlignment="Left" Height="52" Margin="190,10,-21,0" VerticalAlignment="Top" Width="188">
  14. <CheckBox x:Name="ELSEAutoIndentCB" Content="Автооступ после [ELSE]" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" FontSize="14" Click="ELSEAutoIndentCB_Click"/>
  15. </GroupBox>
  16. </Grid>
  17. </Window>