jj: add line in designer and constructor

This commit is contained in:
Jonathan Jenne
2018-04-04 14:14:07 +02:00
parent fd2dc4bf99
commit 6755ce60ea
7 changed files with 164 additions and 46 deletions

View File

@@ -328,6 +328,34 @@ Module ClassControlProperties
End Property
End Class
Public Class LineProperties
Inherits CommonProperties
<Browsable(False)>
<LocalizedCategoryAttribute("category_view")>
<LocalizedDescriptionAttribute("desc_col_title")>
Public Overloads Property ColumnTitle() As String
Get
Return ""
End Get
Set(value As String)
'_column_title = value
End Set
End Property
<Browsable(False)>
<LocalizedCategoryAttribute("category_other")>
<LocalizedDescriptionAttribute("desc_tree_view")>
Public Overloads Property TreeView() As Boolean
Get
Return False
End Get
Set(value As Boolean)
'_tree_view = value
End Set
End Property
End Class
Public Class TextBoxProperties
Inherits InputControlProperties
@@ -631,7 +659,7 @@ Module ClassControlProperties
' +++++ FUNCTION CLASSES +++++
Public Class FunctionAddAppointment
Public Class FunctionAddAppointmentProperties
Inherits BaseProperties
Private _caption As String
@@ -722,7 +750,7 @@ Module ClassControlProperties
End Property
End Class
Public Class FunctionAddFormData
Public Class FunctionAddFormDataProperties
Inherits BaseProperties
Private _caption As String