ExportForm.xaml 1.2 KB

123456789101112131415161718192021222324
  1. <wpf:ThemableWindow x:Class="PRSDesktop.Forms.Export.ExportForm"
  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="ExportForm" Height="700" Width="500" Loaded="Window_Loaded" WindowStartupLocation="CenterScreen">
  9. <Grid x:Name="grid">
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="*" />
  12. <ColumnDefinition Width="80" />
  13. <ColumnDefinition Width="80" />
  14. </Grid.ColumnDefinitions>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="*" />
  17. <RowDefinition Height="40" />
  18. </Grid.RowDefinitions>
  19. <Button x:Name="OKButton" Grid.Column="1" Grid.Row="1" Margin="0,0,5,5" Content="OK" Click="OKButton_Click" />
  20. <Button x:Name="CancelButton" Grid.Column="2" Grid.Row="1" Margin="0,0,5,5" Content="Cancel"
  21. Click="CancelButton_Click" />
  22. </Grid>
  23. </wpf:ThemableWindow>