MS MassChange

This commit is contained in:
Digital Data - Marlon Schreiber
2018-06-08 10:13:00 +02:00
parent 2337a2954a
commit bce977a043
18 changed files with 2600 additions and 254 deletions

View File

@@ -15,7 +15,7 @@ Option Explicit On
Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.5.0.0"), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.7.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -180,6 +180,30 @@ Namespace My
Me("frmValidatorPosition") = value
End Set
End Property
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("0, 0")> _
Public Property frmMassValidatorSize() As Global.System.Drawing.Size
Get
Return CType(Me("frmMassValidatorSize"),Global.System.Drawing.Size)
End Get
Set
Me("frmMassValidatorSize") = value
End Set
End Property
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("0, 0")> _
Public Property frmMassValidatorposition() As Global.System.Drawing.Point
Get
Return CType(Me("frmMassValidatorposition"),Global.System.Drawing.Point)
End Get
Set
Me("frmMassValidatorposition") = value
End Set
End Property
End Class
End Namespace