More driver work

This commit is contained in:
rbalsleyMSFT
2024-12-26 19:56:00 -08:00
committed by rbalsleyMSFT
parent 8c0ed525b3
commit e73fa2d7f9
+5 -5
View File
@@ -160,7 +160,7 @@
</StackPanel> </StackPanel>
<!-- New container for Make & Model fields --> <!-- New container for Make & Model fields -->
<StackPanel Grid.Row="2" Grid.ColumnSpan="2" x:Name="spMakeModelSection" Visibility="Collapsed" Margin="5"> <StackPanel Grid.Row="2" Grid.ColumnSpan="2" x:Name="spMakeModelSection" Visibility="Collapsed" Margin="0">
<Grid Margin="0"> <Grid Margin="0">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/>
@@ -172,21 +172,21 @@
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<!-- Make --> <!-- Make -->
<StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" Margin="0"> <StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" Margin="5">
<TextBlock x:Name="txtMakeLabel" Text="Make:" VerticalAlignment="Center" /> <TextBlock x:Name="txtMakeLabel" Text="Make:" VerticalAlignment="Center" />
<Image x:Name="imgMakeInfo" Source="$infoImagePath" Width="16" Height="16" Margin="5,0,0,0" Cursor="Arrow" <Image x:Name="imgMakeInfo" Source="$infoImagePath" Width="16" Height="16" Margin="5,0,0,0" Cursor="Arrow"
ToolTip="Select the device manufacturer." /> ToolTip="Select the device manufacturer." />
</StackPanel> </StackPanel>
<ComboBox x:Name="cmbMake" Grid.Row="0" Grid.Column="1" Margin="0" <ComboBox x:Name="cmbMake" Grid.Row="0" Grid.Column="1" Margin="5"
VerticalAlignment="Center" HorizontalAlignment="Stretch"/> VerticalAlignment="Center" HorizontalAlignment="Stretch"/>
<!-- Model --> <!-- Model -->
<StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" Margin="0"> <StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" Margin="5">
<TextBlock x:Name="txtModelLabel" Text="Model:" VerticalAlignment="Center"/> <TextBlock x:Name="txtModelLabel" Text="Model:" VerticalAlignment="Center"/>
<Image x:Name="imgModelInfo" Source="$infoImagePath" Width="16" Height="16" Margin="5,0,0,0" Cursor="Arrow" <Image x:Name="imgModelInfo" Source="$infoImagePath" Width="16" Height="16" Margin="5,0,0,0" Cursor="Arrow"
ToolTip="Enter the device model." /> ToolTip="Enter the device model." />
</StackPanel> </StackPanel>
<TextBox x:Name="cmbModel" Grid.Row="1" Grid.Column="1" Margin="0" <TextBox x:Name="cmbModel" Grid.Row="1" Grid.Column="1" Margin="5"
VerticalAlignment="Center" HorizontalAlignment="Stretch"/> VerticalAlignment="Center" HorizontalAlignment="Stretch"/>
</Grid> </Grid>
</StackPanel> </StackPanel>