EgtCAM5 :

- Tradotti un po' di messaggi in italiano.
- Aggiunta possibilità in Db utensili e lavorazioni di annullare le modifiche apportate ad un elemento premendo il tasto Esc.
This commit is contained in:
Emmanuele Sassi
2016-10-18 15:51:58 +00:00
parent b939ffd810
commit 5eecf956b5
27 changed files with 446 additions and 49 deletions
@@ -4,7 +4,7 @@
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5">
<StackPanel>
<Expander Header="Simulation" IsExpanded="{Binding IsExpanded}" Style="{StaticResource ExpanderStyle}">
<Expander Header="{Binding SimulationMsg}" IsExpanded="{Binding IsExpanded}" Style="{StaticResource ExpanderStyle}">
<StackPanel >
<Grid>
<Grid.ColumnDefinitions>
@@ -55,18 +55,24 @@
<UniformGrid Columns="3" Margin="0,10,0,0">
<Button Command="{Binding StepCommand}" Grid.Column="0" Grid.Row="3" Style="{StaticResource EgtCAM5_SimulationButton}">
<Button Command="{Binding StepCommand}" Grid.Column="0" Grid.Row="3"
Style="{StaticResource EgtCAM5_SimulationButton}"
ToolTip="{Binding OneStepToolTip}">
<Image Source="/Resources/OptionPanel/MachiningOptionPanel/SimulationExpander/PlayStep.png"
HorizontalAlignment="Center" VerticalAlignment="Center"
Height="50" Width="50"/>
</Button>
<Button Command="{Binding PlayPauseCommand}" Grid.Column="1" Grid.Row="3" Style="{StaticResource EgtCAM5_SimulationButton}">
<Button Command="{Binding PlayPauseCommand}" Grid.Column="1" Grid.Row="3"
Style="{StaticResource EgtCAM5_SimulationButton}"
ToolTip="{Binding PlayPauseToolTip}">
<Image Source="{Binding PlayPauseImage}" HorizontalAlignment="Center"
VerticalAlignment="Center" Height="50" Width="50"/>
</Button>
<Button Command="{Binding StopCommand}" Grid.Column="2" Grid.Row="3" Style="{StaticResource EgtCAM5_SimulationButton}">
<Button Command="{Binding StopCommand}" Grid.Column="2" Grid.Row="3"
Style="{StaticResource EgtCAM5_SimulationButton}"
ToolTip="{Binding StopHomeToolTip}">
<Image Source="/Resources/OptionPanel/MachiningOptionPanel/SimulationExpander/Stop.png"
HorizontalAlignment="Center" VerticalAlignment="Center"
Height="50" Width="50"/>
@@ -81,7 +87,7 @@
</StackPanel>
</Expander>
<Button Content="GENERATE" Height="30" Command="{Binding GenerateCommand}"/>
<Button Content="{Binding GenerateMsg}" Height="30" Command="{Binding GenerateCommand}"/>
</StackPanel>