1 write to Label
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\Helpers\VBInputBox.vb (1)
41
Label
= New Label
10 references to Label
Microsoft.VisualBasic.Forms (10)
Microsoft\VisualBasic\Helpers\VBInputBox.vb (10)
62
resources.ApplyResources(
Label
, "Label", CultureInfo.CurrentUICulture)
63
Label
.Name = "Label"
71
Controls.Add(
Label
)
86
Label
.Text = prompt
92
Dim labelGraphics As Graphics =
Label
.CreateGraphics
93
Dim labelSizeNeeded As SizeF = labelGraphics.MeasureString(prompt,
Label
.Font,
Label
.Width)
95
If labelSizeNeeded.Height >
Label
.Height Then
98
Dim dialogHeightChange As Integer = CInt(labelSizeNeeded.Height -
Label
.Height)
99
Label
.Height += dialogHeightChange