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

@@ -1513,6 +1513,8 @@ Public Class ClassControlBuilder
.Name = name
}
line.Name = name
line.AutoSize = False
line.BackColor = IntToColor(color)
If _new Then
line.Location = GetCursorPosition()
@@ -1525,6 +1527,8 @@ Public Class ClassControlBuilder
CurrentControl = line
line.Parent = _master_panel
SetEventHandlers(line)
AddToPanel(line)
End Sub