15 lines
449 B
VB.net
15 lines
449 B
VB.net
Public Class ClassUIConfig
|
|
Public Property SkinName As String = "Office 2016 Colorful"
|
|
|
|
Public Property FrmEdit_Splitter As Integer = 300
|
|
|
|
Public Property EditFormConfigs As List(Of EditFormConfig) = New List(Of EditFormConfig)
|
|
|
|
Public Class EditFormConfig
|
|
Public Property SysKey As String
|
|
|
|
Public Property SplitterDistance As Integer
|
|
Public Property SplitterOrientation As Integer
|
|
End Class
|
|
End Class
|