RecordSelectionDialog.xaml 1003 B

123456789101112131415161718
  1. <wpf:ThemableWindow x:Class="PRSDesktop.RecordSelectionDialog"
  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="Select Records To Print" Height="150" Width="300" Background="WhiteSmoke"
  9. WindowStyle="SingleBorderWindow" WindowStartupLocation="CenterScreen">
  10. <Grid Margin="5">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*" />
  13. <RowDefinition Height="*" />
  14. </Grid.RowDefinitions>
  15. <Button x:Name="All" Grid.Row="0" Margin="5" Content="All Records" Click="All_Click" />
  16. <Button x:Name="Sel" Grid.Row="1" Margin="5" Content="Selected Records Only" Click="Sel_Click" />
  17. </Grid>
  18. </wpf:ThemableWindow>