DynamicGridColumnsEditor.xaml 1.3 KB

123456789101112131415161718192021222324
  1. <wpf:ThemableWindow x:Class="InABox.DynamicGrid.DynamicGridColumnsEditor"
  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:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
  7. mc:Ignorable="d"
  8. Title="DynamicGridColumnsEditor" Height="600" Width="815" Loaded="Window_Loaded">
  9. <Grid x:Name="grid">
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="*" />
  12. <RowDefinition Height="40" />
  13. </Grid.RowDefinitions>
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition Width="*" />
  16. <ColumnDefinition Width="80" />
  17. <ColumnDefinition Width="80" />
  18. </Grid.ColumnDefinitions>
  19. <Button x:Name="OKButton" Grid.Row="1" Grid.Column="1" Click="OKButton_Click" HorizontalAlignment="Stretch"
  20. VerticalAlignment="Stretch" Margin="0,0,5,5" Content="OK" />
  21. <Button x:Name="CancelButton" Grid.Row="1" Grid.Column="2" Click="CancelButton_Click"
  22. HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="0,0,5,5" Content="Cancel" />
  23. </Grid>
  24. </wpf:ThemableWindow>