123456789101112131415161718 |
- <wpf:ThemableWindow x:Class="PRSDesktop.RecordSelectionDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
- mc:Ignorable="d"
- Title="Select Records To Print" Height="150" Width="300" Background="WhiteSmoke"
- WindowStyle="SingleBorderWindow" WindowStartupLocation="CenterScreen">
- <Grid Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Button x:Name="All" Grid.Row="0" Margin="5" Content="All Records" Click="All_Click" />
- <Button x:Name="Sel" Grid.Row="1" Margin="5" Content="Selected Records Only" Click="Sel_Click" />
- </Grid>
- </wpf:ThemableWindow>
|