37a5029bf4
-sistemato visualizzazione tempi calcolo -sistemato visualizzazione pulsante assemblato
43 lines
768 B
VB.net
43 lines
768 B
VB.net
Imports EgtUILib
|
|
Imports EgtWPFLib5
|
|
|
|
Public Class StatisticsTimePanelVM
|
|
Inherits VMBase
|
|
|
|
#Region "FIELDS & PROPERTIES"
|
|
|
|
#Region "ToolTip"
|
|
|
|
Public ReadOnly Property TotalTime_ToolTip As String
|
|
Get
|
|
Return EgtMsg(61978)
|
|
End Get
|
|
End Property
|
|
|
|
Public ReadOnly Property DoneTime_ToolTip As String
|
|
Get
|
|
Return EgtMsg(61979)
|
|
End Get
|
|
End Property
|
|
|
|
Public ReadOnly Property RemainingTime_ToolTip As String
|
|
Get
|
|
Return EgtMsg(61980)
|
|
End Get
|
|
End Property
|
|
|
|
#End Region ' ToolTip
|
|
|
|
#End Region ' Fields & Properties
|
|
|
|
#Region "CONSTRUCTOR"
|
|
|
|
Sub New()
|
|
' Creo riferimento a questa classe in Map
|
|
Map.SetRefStatisticsTimePanelVM(Me)
|
|
End Sub
|
|
|
|
#End Region ' CONSTRUCTOR
|
|
|
|
End Class
|