Public Class AppSettings Private myWindowState As FormWindowState Private myBackColor As Color Public Sub New() myWindowState = FormWindowState.Normal myBackColor = SystemColors.Window End Sub Public Property WindowState() As FormWindowState Get Return myWindowState End Get Set(ByVal Value As FormWindowState) myWindowState = value End Set End Property Public Property BackColor() As Color Get Return myBackColor End Get Set(ByVal Value As Color) myBackColor = value End Set End Property End Class