jj: add initial propertygrid functions

This commit is contained in:
Jonathan Jenne
2019-01-22 17:00:02 +01:00
parent 1e0bccdb48
commit 82376122c8
7 changed files with 93 additions and 46 deletions

View File

@@ -0,0 +1,10 @@
Namespace ControlProperties
Public MustInherit Class ClassBaseProperties
Public Property Id As Integer
Public Property Type As String
Public Property Name As String
End Class
End Namespace

View File

@@ -0,0 +1,7 @@
Namespace ControlProperties
Public Class ClassLabelProperties
Inherits ClassBaseProperties
End Class
End Namespace