DynamicGridFilterEditor.xaml 1.3 KB

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