Files
2021-09-15 06:13:54 +01:00

22 lines
889 B
XML

<UserControl xmlns="https://github.com/avaloniaui"
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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="UVtools.WPF.Controls.Tools.ToolRotateControl">
<StackPanel Orientation="Horizontal" Spacing="10">
<TextBlock VerticalAlignment="Center" Text="Rotation angle:"/>
<NumericUpDown
Classes="ValueLabel ValueLabel_deg"
Width="180"
Minimum="-359.99"
Maximum="359.99"
Increment="1.0"
FormatString="F2"
Value="{Binding Operation.AngleDegrees}"
/>
<TextBlock VerticalAlignment="Center" Text="degrees"/>
</StackPanel>
</UserControl>