1 write to Label
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\Helpers\VBInputBox.vb (1)
40Label = New Label
10 references to Label
Microsoft.VisualBasic.Forms (10)
Microsoft\VisualBasic\Helpers\VBInputBox.vb (10)
61resources.ApplyResources(Label, "Label", CultureInfo.CurrentUICulture) 62Label.Name = "Label" 70Controls.Add(Label) 85Label.Text = prompt 91Dim labelGraphics As Graphics = Label.CreateGraphics 92Dim labelSizeNeeded As SizeF = labelGraphics.MeasureString(prompt, Label.Font, Label.Width) 94If labelSizeNeeded.Height > Label.Height Then 97Dim dialogHeightChange As Integer = CInt(labelSizeNeeded.Height - Label.Height) 98Label.Height += dialogHeightChange