16 instantiations of ToolStripStatusLabel
Accessibility_Core_App (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();
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (1)
249return new ToolStripStatusLabel(text, image, onClick);
System.Windows.Forms.Tests (11)
System\Windows\Forms\AccessibleObjects\StatusStrip.StatusStripAccessibleObjectTests.cs (1)
931return new ToolStripStatusLabel()
System\Windows\Forms\AccessibleObjects\ToolStripStatusLabel.ToolStripStatusLabelAccessibleObjectTests.cs (4)
14using ToolStripStatusLabel toolStripStatusLabel = new(); 25using ToolStripStatusLabel toolStripStatusLabel = new(); 39using ToolStripStatusLabel toolStripStatusLabel = new(); 67using ToolStripStatusLabel toolStripStatusLabel = new();
System\Windows\Forms\ToolStripStatusLabelTests.cs (6)
17_toolStripStatusLabel = new(); 29using ToolStripStatusLabel label = new(sampleText); 37using ToolStripStatusLabel label = new(sampleImage); 47using ToolStripStatusLabel label = new(sampleText, sampleImage); 60using ToolStripStatusLabel label = new(sampleText, sampleImage, sampleClickHandler); 75using ToolStripStatusLabel toolStripStatusLabel = new("Sample Text", image, onClick, "SampleName");
WinFormsControlsTest (1)
ToolStripTests.Designer.cs (1)
42this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
29 references to ToolStripStatusLabel
Accessibility_Core_App (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;
System.Windows.Forms (10)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (3)
404if (item is ToolStripStatusLabel panel && panel.Spring) 477bool spring = (DisplayedItems[i] is ToolStripStatusLabel panel && panel.Spring); 524bool 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)
5using static System.Windows.Forms.ToolStripStatusLabel; 14using ToolStripStatusLabel toolStripStatusLabel = new(); 25using ToolStripStatusLabel toolStripStatusLabel = new(); 39using ToolStripStatusLabel toolStripStatusLabel = new(); 67using ToolStripStatusLabel toolStripStatusLabel = new();
System\Windows\Forms\StatusStripTests.cs (2)
885ToolStripStatusLabel button = Assert.IsType<ToolStripStatusLabel>(control.CreateDefaultItem(text, image, onClick));
System\Windows\Forms\ToolStripStatusLabelTests.cs (6)
13private readonly ToolStripStatusLabel _toolStripStatusLabel; 29using ToolStripStatusLabel label = new(sampleText); 37using ToolStripStatusLabel label = new(sampleImage); 47using ToolStripStatusLabel label = new(sampleText, sampleImage); 60using ToolStripStatusLabel label = new(sampleText, sampleImage, sampleClickHandler); 75using ToolStripStatusLabel toolStripStatusLabel = new("Sample Text", image, onClick, "SampleName");
WinFormsControlsTest (1)
ToolStripTests.Designer.cs (1)
470private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;