update new form designer

This commit is contained in:
Jonathan Jenne
2020-01-14 16:27:16 +01:00
parent 407a5979ac
commit 9b564f98b0
24 changed files with 1556 additions and 129 deletions

View File

@@ -0,0 +1,17 @@
Imports System.ComponentModel
Imports DD_PM_WINDREAM.Controls.Localization
Namespace Controls.Properties
Public MustInherit Class BaseProperties
<LocalizedCategory("category_info")>
<LocalizedDescription("desc_id")>
<[ReadOnly](True)>
Public Property Id As Integer
<LocalizedCategory("category_info")>
<LocalizedDescription("desc_name")>
Public Property Name As String
End Class
End Namespace

View File

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

View File

@@ -0,0 +1,14 @@
Imports System.ComponentModel
Imports DD_PM_WINDREAM.Controls.Editors
Imports DD_PM_WINDREAM.Controls.Localization
Namespace Controls.Properties
Public Class ComboboxProperties
Inherits BaseProperties
<LocalizedCategory("category_data")>
<LocalizedDescription("desc_datasource")>
Public Property Datasource As DatasourceType
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