- aggiunti EgtInterface e Language
- modificata finestra Copia Multipla
This commit is contained in:
@@ -3,6 +3,12 @@
|
||||
|
||||
Friend Event m_CloseWindow(bDialogResult As Boolean)
|
||||
|
||||
Public ReadOnly Property sTitle As String
|
||||
Get
|
||||
Return EgtMsg(1101)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Private m_nCopyNumber As Integer
|
||||
Public ReadOnly Property nCopyNumber As Integer
|
||||
Get
|
||||
@@ -15,12 +21,34 @@
|
||||
End Get
|
||||
Set(value As String)
|
||||
If Not Integer.TryParse(value, m_nCopyNumber) Then
|
||||
MessageBox.Show("Valore non impostabile come quantita' di porte!", "Errore!", MessageBoxButton.OK, MessageBoxImage.Error)
|
||||
MessageBox.Show(EgtMsg(1103), EgtMsg(1051), MessageBoxButton.OK, MessageBoxImage.Error)
|
||||
NotifyPropertyChanged(sCopyNumber)
|
||||
End If
|
||||
End Set
|
||||
End Property
|
||||
|
||||
#Region "Messages"
|
||||
|
||||
Public ReadOnly Property sCopyNumberMsg As String
|
||||
Get
|
||||
Return EgtMsg(1102)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public ReadOnly Property sOkMsg As String
|
||||
Get
|
||||
Return EgtMsg(1001)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public ReadOnly Property sCancelMsg As String
|
||||
Get
|
||||
Return EgtMsg(1002)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
#End Region ' Messages
|
||||
|
||||
' Definizione comandi
|
||||
Private m_cmdOk As ICommand
|
||||
Private m_cmdCancel As ICommand
|
||||
|
||||
Reference in New Issue
Block a user