jj 04.05.2016 staticlist editor

This commit is contained in:
JenneJ
2016-05-04 16:09:15 +02:00
parent 7ec031388f
commit 1c53e3e894
8 changed files with 326 additions and 8 deletions

View File

@@ -349,12 +349,12 @@ Module ClassControlProperties
<LocalizedCategoryAttribute("category_data")>
<LocalizedDescriptionAttribute("desc_staticlist")>
Public Property StaticList() As String
Public Property StaticList() As StaticListValue
Get
Return _static_list
Return New StaticListValue(_static_list)
End Get
Set(value As String)
_static_list = value
Set(value As StaticListValue)
_static_list = value.Value
End Set
End Property