Organize Control Classes in Namespaces

This commit is contained in:
Jonathan Jenne
2019-03-27 15:59:16 +01:00
parent d7a4a4441d
commit 0eb1eeb287
34 changed files with 670 additions and 234 deletions

View File

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