ScheduleForm.xaml 1007 B

123456789101112131415161718
  1. <wpf:ThemableWindow x:Class="PRS.Shared.ScheduleForm"
  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="ScheduleForm" Height="500" Width="800" Loaded="Window_Loaded">
  9. <Grid Margin="10,10,10,10" x:Name="Grid">
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="*" />
  12. <!--<RowDefinition Height="30"/>-->
  13. </Grid.RowDefinitions>
  14. <!--<CheckBox x:Name="Enabled" Content="Enable Schedules?" Margin="5" VerticalAlignment="Center" HorizontalAlignment="Left" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Grid.Row="1" Checked="Enabled_Checked" Unchecked="Enabled_Checked"/>-->
  15. </Grid>
  16. </wpf:ThemableWindow>