Work on Editor

This commit is contained in:
Jonathan Jenne
2019-03-28 16:24:17 +01:00
parent 0eb1eeb287
commit 05f5e730e1
25 changed files with 503 additions and 198 deletions

View File

@@ -58,9 +58,10 @@ Namespace Controls
End If
oEditor.Tag = New Metadata() With {
.Id = oControlId,
.Type = oControlType
}
.Id = oControlId,
.Type = oControlType,
.Caption = oCaption
}
LayoutControls.Add(oEditor)
LayoutControlGroup.AddItem(oCaption, oEditor)

View File

@@ -2,6 +2,7 @@
Public Class Metadata
Public Id As Int64
Public Type As String
Public Caption As String
End Class
End Namespace

View File

@@ -9,7 +9,7 @@ Namespace Controls.Properties
<[ReadOnly](True)>
Public Property Id As Integer
<LocalizedCategory("category_view")>
<LocalizedCategory("category_info")>
<LocalizedDescription("desc_name")>
Public Property Name As String
End Class

View File

@@ -0,0 +1,7 @@
Namespace Controls.Properties
Public Class CheckboxProperties
Inherits BaseProperties
End Class
End Namespace

View File

@@ -0,0 +1,6 @@
Namespace Controls.Properties
Public Class DatepickerProperties
Inherits BaseProperties
End Class
End Namespace

View File

@@ -0,0 +1,7 @@
Namespace Controls.Properties
Public Class MemoeditProperties
Inherits BaseProperties
End Class
End Namespace

View File

@@ -0,0 +1,7 @@
Namespace Controls.Properties
Public Class TextboxProperties
Inherits BaseProperties
End Class
End Namespace