49 lines
1.6 KiB
XML
49 lines
1.6 KiB
XML
<UserControl x:Class="RotateV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:EgtStone3D"
|
|
mc:Ignorable="d">
|
|
<StackPanel Name ="WinRotate" Orientation="Vertical" VerticalAlignment="Top">
|
|
<Label Name="TopBar"
|
|
Content="Seleziona l'asse di rotazione" HorizontalAlignment="Center"
|
|
Width="Auto"/>
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="2*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Name="Testo" Height="26"
|
|
Foreground="Black"
|
|
Margin="1,5,1,0"
|
|
Text="Angolo"
|
|
TextAlignment="Center"
|
|
Grid.Column="0"
|
|
IsEnabled="True"/>
|
|
<TextBox Name="RotInputData" Height="26"
|
|
Foreground="Black"
|
|
Margin="1,5,1,0"
|
|
Grid.Column="1"
|
|
Text="0"
|
|
HorizontalContentAlignment="Right"
|
|
VerticalContentAlignment="Center"
|
|
IsEnabled="False"/>
|
|
</Grid>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="2*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Name="Conferma"
|
|
Grid.Column="0"
|
|
Content="Conferma"/>
|
|
<Button Name="Annulla"
|
|
Grid.Column="1"
|
|
Content="Annulla"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|