123456789101112131415161718 |
- <wpf:ThemableWindow x:Class="PRS.Shared.ScheduleForm"
- 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="ScheduleForm" Height="500" Width="800" Loaded="Window_Loaded">
- <Grid Margin="10,10,10,10" x:Name="Grid">
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <!--<RowDefinition Height="30"/>-->
- </Grid.RowDefinitions>
- <!--<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"/>-->
- </Grid>
- </wpf:ThemableWindow>
|