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