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