Lockdown mode for old catalog

This commit is contained in:
Maddo 2017-09-27 17:12:36 +02:00
commit 3d1f92321e
19 changed files with 1309 additions and 731 deletions

View file

@ -82,6 +82,9 @@ Module PicSettings
Private TempMinText As String = ""
Private _mainForm As MainForm
Private _lockDownMode As Boolean = false
Private _builtInImage As Image
Private _builtInText As String
'Private progressBar As System.Windows.Forms.ProgressBar
@ -601,4 +604,32 @@ Module PicSettings
End Set
End Property
Public Property LockDownMode As Boolean
Get
Return _lockDownMode
End Get
Set(value As Boolean)
_lockDownMode = value
End Set
End Property
Public Property BuiltInImage As Image
Get
return _builtInImage
End Get
Set(value As Image)
_builtInImage = value
End Set
End Property
public Property BuiltInText as String
Get
return _builtInText
End Get
Set(value as String)
_builtInText = value
End Set
End Property
End Module