Files
Dario Sassi d90a49248f EgtCAM5 :
-in disposizione attivato comando cancella grezzo.
2025-02-03 08:19:18 +01:00

41 lines
1.7 KiB
XML

<UserControl x:Class="RawPartOptionV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel>
<CheckBox Content="Move with Fixture" IsChecked="{Binding MoveWithFixture, Mode=TwoWay}"/>
<UniformGrid Columns="2" Margin="0,5,0,0">
<Button Content="New" Command="{Binding NewRawPartCommand}"/>
<Button Content="Remove" Command="{Binding RemoveRawPartCommand}"/>
</UniformGrid>
<Grid Visibility="{Binding RawPartParamVisibility, Mode=OneWay}">
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<UniformGrid Grid.Row="0" Columns="2">
<TextBlock Text="{Binding LenghtMsg}"/>
<TextBox/> <!--Text="{Binding Lenght}"-->
</UniformGrid>
<UniformGrid Grid.Row="1" Columns="2">
<TextBlock Text="{Binding WidthMsg}"/>
<TextBox/> <!--Text="{Binding Width}"-->
</UniformGrid>
<UniformGrid Grid.Row="2" Columns="2">
<TextBlock Text="{Binding HeightMsg}"/>
<TextBox/> <!--Text="{Binding Height}"-->
</UniformGrid>
<UniformGrid Grid.Row="3" Columns="2">
<TextBlock Text="{Binding PositionMsg}"/>
<TextBox/> <!--Text="{Binding Position}"-->
</UniformGrid>
<Button Grid.Row="4" Content="Ok"/> <!--Command="{Binding OkCommand}"-->
</Grid>
</StackPanel>
</UserControl>