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