FactoryLostTimeChooser.xaml 1023 B

12345678910111213141516171819
  1. <wpf:ThemableWindow x:Class="PRSDesktop.FactoryLostTimeChooser"
  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="Lost Time" Height="800" Width="500" WindowStartupLocation="CenterScreen" FontSize="24">
  9. <DockPanel>
  10. <Label Content="Please Select a Lost Time Category" DockPanel.Dock="Top" HorizontalContentAlignment="Center"
  11. VerticalContentAlignment="Center" Margin="0,20,0,40" />
  12. <Grid x:Name="LostTime" DockPanel.Dock="Top">
  13. <Grid.ColumnDefinitions>
  14. <ColumnDefinition Width="*" />
  15. <ColumnDefinition Width="Auto" />
  16. </Grid.ColumnDefinitions>
  17. </Grid>
  18. </DockPanel>
  19. </wpf:ThemableWindow>