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
@@ -3,8 +3,11 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:EgtCAM5.EgtCAM5">
<Expander Header="Properties" IsExpanded="{Binding IsEnabled}" IsEnabled="{Binding IsEnabled}"
<Expander IsExpanded="{Binding IsEnabled}" IsEnabled="{Binding IsEnabled}"
Style="{StaticResource ExpanderStyle}">
<Expander.Header>
<TextBlock Text="{Binding PropertiesMsg}"/>
</Expander.Header>
<UniformGrid>
<TextBox Text="{Binding InfoBox}" MaxHeight="100" IsReadOnly="True" HorizontalScrollBarVisibility="Auto"/>
</UniformGrid>
@@ -5,6 +5,16 @@ Namespace EgtCAM5
Public Class InfoExpanderViewModel
Inherits ViewModelBase
#Region "Messages"
Public ReadOnly Property PropertiesMsg As String
Get
Return EgtMsg(MSG_DRAWOPTION + 1)
End Get
End Property
#End Region
Private m_IsExpanded As Boolean
Public Property IsEnabled As Boolean
Get