16 instantiations of ToolStripStatusLabel
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (1)
246
return new
ToolStripStatusLabel
(text, image, onClick);
System.Windows.Forms.Tests (11)
System\Windows\Forms\AccessibleObjects\StatusStrip.StatusStripAccessibleObjectTests.cs (1)
933
return new
ToolStripStatusLabel
()
System\Windows\Forms\AccessibleObjects\ToolStripStatusLabel.ToolStripStatusLabelAccessibleObjectTests.cs (4)
16
using ToolStripStatusLabel toolStripStatusLabel =
new
();
27
using ToolStripStatusLabel toolStripStatusLabel =
new
();
41
using ToolStripStatusLabel toolStripStatusLabel =
new
();
69
using ToolStripStatusLabel toolStripStatusLabel =
new
();
System\Windows\Forms\ToolStripStatusLabelTests.cs (6)
15
_toolStripStatusLabel =
new
();
27
using ToolStripStatusLabel label =
new
(sampleText);
35
using ToolStripStatusLabel label =
new
(sampleImage);
45
using ToolStripStatusLabel label =
new
(sampleText, sampleImage);
58
using ToolStripStatusLabel label =
new
(sampleText, sampleImage, sampleClickHandler);
73
using ToolStripStatusLabel toolStripStatusLabel =
new
("Sample Text", image, onClick, "SampleName");
TestPassApp (3)
Menu_Toolbars_controls.Designer.cs (1)
89
toolStripStatusLabel1 = new
ToolStripStatusLabel
();
ToolStripContainer.Designer.cs (2)
54
this.toolStripStatusLabel1 = new System.Windows.Forms.
ToolStripStatusLabel
();
55
this.toolStripStatusLabel2 = new System.Windows.Forms.
ToolStripStatusLabel
();
WinFormsControlsTest (1)
ToolStripTests.Designer.cs (1)
42
this.toolStripStatusLabel1 = new System.Windows.Forms.
ToolStripStatusLabel
();
29 references to ToolStripStatusLabel
System.Windows.Forms (10)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (3)
412
if (item is
ToolStripStatusLabel
panel && panel.Spring)
485
bool spring = (DisplayedItems[i] is
ToolStripStatusLabel
panel && panel.Spring);
532
bool spring = (DisplayedItems[i] is
ToolStripStatusLabel
panel && panel.Spring);
System\Windows\Forms\Controls\ToolStrips\ToolstripProfessionalRenderer.cs (2)
319
ToolStripStatusLabel
? item = e.Item as
ToolStripStatusLabel
;
System\Windows\Forms\Controls\ToolStrips\ToolStripStatusLabel.ToolStripStatusLabelAccessibleObject.cs (2)
13
private readonly
ToolStripStatusLabel
_owningToolStripStatusLabel;
15
public ToolStripStatusLabelAccessibleObject(
ToolStripStatusLabel
ownerItem) : base(ownerItem)
System\Windows\Forms\Controls\ToolStrips\ToolStripStatusLabel.ToolStripStatusLabelLayout.cs (1)
15
public ToolStripStatusLabelLayout(
ToolStripStatusLabel
owner)
System\Windows\Forms\Controls\ToolStrips\ToolStripSystemRenderer.cs (2)
496
ToolStripStatusLabel
? item = e.Item as
ToolStripStatusLabel
;
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ToolStripDesignerUtils.cs (1)
46
[typeof(
ToolStripStatusLabel
), typeof(ToolStripProgressBar), typeof(ToolStripDropDownButton), typeof(ToolStripSplitButton)];
System\Windows\Forms\Design\ToolStripItemCustomMenuItemCollection.cs (1)
146
if (selectedItem is
ToolStripStatusLabel
)
System.Windows.Forms.Tests (13)
System\Windows\Forms\AccessibleObjects\ToolStripStatusLabel.ToolStripStatusLabelAccessibleObjectTests.cs (5)
7
using static System.Windows.Forms.
ToolStripStatusLabel
;
16
using
ToolStripStatusLabel
toolStripStatusLabel = new();
27
using
ToolStripStatusLabel
toolStripStatusLabel = new();
41
using
ToolStripStatusLabel
toolStripStatusLabel = new();
69
using
ToolStripStatusLabel
toolStripStatusLabel = new();
System\Windows\Forms\StatusStripTests.cs (2)
887
ToolStripStatusLabel
button = Assert.IsType<
ToolStripStatusLabel
>(control.CreateDefaultItem(text, image, onClick));
System\Windows\Forms\ToolStripStatusLabelTests.cs (6)
11
private readonly
ToolStripStatusLabel
_toolStripStatusLabel;
27
using
ToolStripStatusLabel
label = new(sampleText);
35
using
ToolStripStatusLabel
label = new(sampleImage);
45
using
ToolStripStatusLabel
label = new(sampleText, sampleImage);
58
using
ToolStripStatusLabel
label = new(sampleText, sampleImage, sampleClickHandler);
73
using
ToolStripStatusLabel
toolStripStatusLabel = new("Sample Text", image, onClick, "SampleName");
TestPassApp (3)
Menu_Toolbars_controls.Designer.cs (1)
647
private
ToolStripStatusLabel
toolStripStatusLabel1;
ToolStripContainer.Designer.cs (2)
627
private System.Windows.Forms.
ToolStripStatusLabel
toolStripStatusLabel1;
628
private System.Windows.Forms.
ToolStripStatusLabel
toolStripStatusLabel2;
WinFormsControlsTest (1)
ToolStripTests.Designer.cs (1)
470
private System.Windows.Forms.
ToolStripStatusLabel
toolStripStatusLabel1;