jj: add location to dgv, change size of linelabel

This commit is contained in:
Jonathan Jenne 2018-04-04 11:43:44 +02:00
parent f83d5aea45
commit c98135429f

View File

@ -141,6 +141,7 @@ Public Class ClassControlCreator
.Name = $"{PREFIX_DATAGRIDVIEW}_{clsTools.ShortGUID}",
.Size = New Size(DEFAULT_WIDTH, DEFAULT_HEIGHT_TABLE),
.Cursor = Cursors.Hand,
.Location = location,
.AllowUserToAddRows = False,
.AllowUserToDeleteRows = False,
.AllowUserToResizeColumns = False,
@ -184,6 +185,7 @@ Public Class ClassControlCreator
Dim control As New LineLabel With {
.Name = $"{PREFIX_LINE}_{clsTools.ShortGUID}",
.Text = "---------------------------------",
.Size = New Size(100, 5),
.Location = location
}