JobDock.xaml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <UserControl x:Class="PRSDesktop.JobDock"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. d:DesignHeight="600" d:DesignWidth="400">
  8. <Grid x:Name="grid">
  9. <Grid.RowDefinitions>
  10. <RowDefinition Height="Auto" />
  11. <RowDefinition Height="*" />
  12. </Grid.RowDefinitions>
  13. <DockPanel Grid.Row="0" Margin="0,0,0,4">
  14. <Label
  15. DockPanel.Dock="Left"
  16. Content="Job Status:" />
  17. <ComboBox
  18. x:Name="JobStatus"
  19. DockPanel.Dock="Left"
  20. DisplayMemberPath="Value"
  21. SelectedValuePath="Key"
  22. VerticalContentAlignment="Center"
  23. SelectionChanged="JobStatus_SelectionChanged"
  24. SelectedIndex="0" />
  25. </DockPanel>
  26. </Grid>
  27. </UserControl>