28 lines
692 B
VB.net
28 lines
692 B
VB.net
Imports System.ComponentModel
|
|
Imports System.Drawing.Design
|
|
Imports DevExpress.XtraEditors.Repository
|
|
Imports EDMI_ClientSuite.ClassControlLocalization
|
|
|
|
Namespace ControlProperties
|
|
|
|
|
|
|
|
Public Class ClassMultiInputProperties
|
|
Inherits ClassInputProperties
|
|
|
|
Private _static_list As String
|
|
|
|
<LocalizedDescription("desc_staticlist")>
|
|
<LocalizedCategory("category_data")>
|
|
Public Property StaticList As StaticList
|
|
Get
|
|
Return New StaticList(_static_list)
|
|
End Get
|
|
Set(value As StaticList)
|
|
_static_list = value?.Value
|
|
End Set
|
|
End Property
|
|
End Class
|
|
|
|
End Namespace
|