Added degree symbols next to rotation controls

This commit is contained in:
Travis Nickles 2020-02-22 13:47:31 -06:00
parent 0a726d079a
commit 99a678c3b5

View File

@ -408,12 +408,19 @@
</StackPanel> </StackPanel>
<Label Content="Rotation:" Grid.Row="10" Grid.Column="0" /> <Label Content="Rotation:" Grid.Row="10" Grid.Column="0" />
<xctk:IntegerUpDown d:IsHidden="True" Value="{Binding LSRotation}" <DockPanel Grid.Row="10" Grid.Column="1">
Grid.Row="10" Grid.Column="1" Minimum="-180" Maximum="180" <TextBlock Text="&#xb0;" DockPanel.Dock="Right" FontSize="18" Margin="{StaticResource spaceMargin}" />
<xctk:IntegerUpDown d:IsHidden="True" Value="{Binding LSRotation}"
Minimum="-180" Maximum="180"
Margin="{StaticResource spaceMargin}" /> Margin="{StaticResource spaceMargin}" />
<xctk:IntegerUpDown d:IsHidden="True" Value="{Binding RSRotation}" </DockPanel>
Grid.Row="10" Grid.Column="2" Minimum="-180" Maximum="180"
<DockPanel Grid.Row="10" Grid.Column="2">
<TextBlock Text="&#xb0;" DockPanel.Dock="Right" FontSize="18" Margin="{StaticResource spaceMargin}" />
<xctk:IntegerUpDown d:IsHidden="True" Value="{Binding RSRotation}"
Minimum="-180" Maximum="180"
Margin="{StaticResource spaceMargin}" /> Margin="{StaticResource spaceMargin}" />
</DockPanel>
</Grid> </Grid>
</GroupBox> </GroupBox>