ModuleConfigurationWindow.xaml 1.4 KB

1234567891011121314151617181920212223242526
  1. <wpf:ThemableWindow x:Class="PRSDesktop.ModuleConfigurationWindow"
  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:PRSDesktop"
  7. xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
  8. mc:Ignorable="d"
  9. Title="ModuleConfigurationWindow" Height="750" Width="500" WindowStartupLocation="CenterOwner">
  10. <Grid Margin="5">
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="*" />
  13. <ColumnDefinition Width="Auto" />
  14. <ColumnDefinition Width="Auto" />
  15. </Grid.ColumnDefinitions>
  16. <Grid.RowDefinitions>
  17. <RowDefinition Height="*" />
  18. <RowDefinition Height="Auto" />
  19. </Grid.RowDefinitions>
  20. <local:ModuleGrid x:Name="Modules" Grid.Column="0" Grid.ColumnSpan="3" Grid.Row="0" />
  21. <Button x:Name="OK" Grid.Column="1" Grid.Row="1" Click="OK_Click" Margin="5,5,0,0" Height="30" Width="80"
  22. Content="OK" />
  23. <Button x:Name="Cancel" Grid.Column="2" Grid.Row="1" Click="Cancel_Click" Margin="5,5,0,0" Height="30"
  24. Width="80" Content="Cancel" />
  25. </Grid>
  26. </wpf:ThemableWindow>