cd49c334f4
- cambiata icona. - cambiato aspetto interfaccia. - aggiunta rimozione sia file cnc che prb.
68 lines
2.4 KiB
XML
68 lines
2.4 KiB
XML
<StackPanel x:Class="ProbingPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWpfLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
Margin="5,5,5,0">
|
|
|
|
<Button Content="Open DDF"
|
|
Command="{Binding OpenDDF_Command}"
|
|
IsEnabled="{Binding OpenDDF_IsEnabled}"
|
|
Style="{StaticResource Main_TextButton}"
|
|
Margin="0,0,0,5"/>
|
|
<TextBlock Text="{Binding DDFPath}"
|
|
TextWrapping="WrapWithOverflow"
|
|
Width="300"
|
|
Height="30"
|
|
Margin="0,0,0,5"/>
|
|
<UniformGrid Columns="2"
|
|
Width="200"
|
|
Margin="0,0,0,5">
|
|
<TextBlock Text="Property:"/>
|
|
<TextBlock Text="{Binding DoorType}"/>
|
|
</UniformGrid>
|
|
<UniformGrid Columns="2"
|
|
Width="200"
|
|
Margin="0,0,0,5">
|
|
<TextBlock Text="Width:"/>
|
|
<EgtWpfLib5:EgtTextBox Text="{Binding Width}"
|
|
IsReadOnly="True"/>
|
|
</UniformGrid>
|
|
<UniformGrid Columns="2"
|
|
Width="200"
|
|
Margin="0,0,0,5">
|
|
<TextBlock Text="Height:"/>
|
|
<EgtWpfLib5:EgtTextBox Text="{Binding Height}"
|
|
IsReadOnly="True"/>
|
|
</UniformGrid>
|
|
<UniformGrid Columns="2"
|
|
Width="200"
|
|
Margin="0,0,0,5">
|
|
<TextBlock Text="Thickness:"/>
|
|
<EgtWpfLib5:EgtTextBox Text="{Binding Thickness}"
|
|
IsReadOnly="True"/>
|
|
</UniformGrid>
|
|
<Button Content="Generate"
|
|
Command="{Binding Generate_Command}"
|
|
IsEnabled="{Binding Generate_IsEnabled}"
|
|
Style="{StaticResource Main_TextButton}"
|
|
Margin="0,0,0,5"/>
|
|
<TextBlock Text="{Binding Status}"
|
|
Width="300"
|
|
TextAlignment="Center"
|
|
TextWrapping="WrapWithOverflow"
|
|
FontSize="22"
|
|
Height="90"
|
|
Margin="0,0,0,5"/>
|
|
<ProgressBar Value="{Binding Progress_Value}"
|
|
Height="40"
|
|
Width="330"
|
|
IsEnabled="{Binding Timer_IsEnabled}"
|
|
Margin="0,0,0,5"/>
|
|
<Button Content="Cancel"
|
|
Command="{Binding Cancel_Command}"
|
|
IsEnabled="{Binding Timer_IsEnabled}"
|
|
Style="{StaticResource Main_TextButton}"
|
|
Margin="0,0,0,5"/>
|
|
|
|
</StackPanel>
|