2 types derived from StatusStrip
System.Windows.Forms.Tests (2)
System\Windows\Forms\StatusStripTests.cs (2)
1257
private class NonReadOnlyControlsStatusStrip :
StatusStrip
1262
private class SubStatusStrip :
StatusStrip
44 instantiations of StatusStrip
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ToolStripActionListTests.cs (1)
149
var statusStrip = new
StatusStrip
System.Windows.Forms.Tests (40)
System\Windows\Forms\AccessibleObjects\StatusStrip.StatusStripAccessibleObjectTests.cs (8)
17
using StatusStrip statusStrip =
new
()
32
using StatusStrip statusStrip =
new
();
43
using StatusStrip statusStrip =
new
()
57
using StatusStrip statusStrip =
new
()
71
using StatusStrip statusStrip =
new
();
83
using StatusStrip statusStrip =
new
();
111
using StatusStrip statusStrip =
new
();
889
StatusStrip statusStrip =
new
();
System\Windows\Forms\StatusStripTests.cs (17)
181
using StatusStrip control =
new
();
281
using StatusStrip control =
new
()
326
using StatusStrip control =
new
();
373
using StatusStrip control =
new
()
409
using StatusStrip control =
new
();
434
using StatusStrip control =
new
();
473
using StatusStrip control =
new
();
516
using StatusStrip control =
new
()
552
using StatusStrip control =
new
();
580
using StatusStrip control =
new
();
608
using StatusStrip control =
new
();
615
using StatusStrip control =
new
();
703
using StatusStrip control =
new
()
739
using StatusStrip control =
new
()
801
using StatusStrip control =
new
();
841
using StatusStrip control =
new
()
905
using StatusStrip control =
new
()
System\Windows\Forms\StatusStripTests.Rendering.cs (1)
17
using StatusStrip statusStrip = new
StatusStrip
System\Windows\Forms\ToolStripControlHostTests.cs (4)
1388
using StatusStrip statusParent =
new
();
1456
using StatusStrip statusParent =
new
();
3101
using StatusStrip statusParent =
new
();
3170
using StatusStrip statusParent =
new
();
System\Windows\Forms\ToolStripItemTests.cs (6)
2082
using StatusStrip owner =
new
();
2093
using StatusStrip parent =
new
();
6445
using StatusStrip statusOwner =
new
();
6494
using StatusStrip statusOwner =
new
();
6967
using StatusStrip statusParent =
new
();
7023
using StatusStrip statusParent =
new
();
System\Windows\Forms\ToolStripRendererTests.cs (4)
478
yield return new object[] { new
StatusStrip
() };
479
yield return new object[] { new
StatusStrip
{ GripStyle = ToolStripGripStyle.Hidden } };
480
yield return new object[] { new
StatusStrip
{ RightToLeft = RightToLeft.Yes } };
525
yield return new object[] { new ToolStripRenderEventArgs(graphics, new
StatusStrip
()) };
TestPassApp (2)
Menu_Toolbars_controls.Designer.cs (1)
79
statusStrip1 = new
StatusStrip
();
ToolStripContainer.Designer.cs (1)
50
this.statusStrip1 = new System.Windows.Forms.
StatusStrip
();
WinFormsControlsTest (1)
ToolStripTests.Designer.cs (1)
35
this.statusStrip1 = new System.Windows.Forms.
StatusStrip
();
105 references to StatusStrip
System.Windows.Forms (16)
src\Common\src\Obsoletions.cs (1)
38
internal const string StatusBarMessage = $"`{nameof(StatusBar)}` is provided for binary compatibility with .NET Framework and is not intended to be used directly from your code. Use `{nameof(
StatusStrip
)}` instead.";
System\Windows\Forms\Controls\ToolStrips\StatusStrip.StatusStripAccessibleObject.cs (3)
12
public StatusStripAccessibleObject(
StatusStrip
owner) : base(owner)
19
=> this.IsOwnerHandleCreated(out
StatusStrip
? _) ? HitTest((int)x, (int)y) : null;
22
=> this.IsOwnerHandleCreated(out
StatusStrip
? _) ? GetFocused() : null;
System\Windows\Forms\Controls\ToolStrips\ToolStripHighContrastRenderer.cs (1)
275
else if (e.ToolStrip is
StatusStrip
)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
659
if (Owner is not null and
StatusStrip
)
System\Windows\Forms\Controls\ToolStrips\ToolStripProfessionalLowResolutionRenderer.cs (1)
37
else if (e.ToolStrip is
StatusStrip
)
System\Windows\Forms\Controls\ToolStrips\ToolstripProfessionalRenderer.cs (5)
133
else if (toolStrip is
StatusStrip
)
411
else if (toolStrip is
StatusStrip
)
836
if (toolStrip is ToolStripDropDown or MenuStrip or
StatusStrip
)
1031
StatusStrip
? statusStrip = e.ToolStrip as
StatusStrip
;
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.cs (1)
87
if (Owner is not null and
StatusStrip
)
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (1)
971
if (e.ToolStrip is
StatusStrip
statusStrip)
System\Windows\Forms\Controls\ToolStrips\ToolStripSystemRenderer.cs (2)
194
if (toolStrip is
StatusStrip
)
240
if (toolStrip is
StatusStrip
)
System.Windows.Forms.Design (11)
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionBehavior.cs (1)
272
|| item.GetType(host) == typeof(
StatusStrip
))
System\Windows\Forms\Design\ToolStripActionList.cs (3)
23
if (_toolStrip is not
StatusStrip
)
150
if (_toolStrip is not
StatusStrip
)
177
if (_toolStrip is not
StatusStrip
)
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (2)
172
if (typeof(
StatusStrip
).IsAssignableFrom(toolType))
345
if (typeof(
StatusStrip
).IsAssignableFrom(toolType))
System\Windows\Forms\Design\ToolStripDesignerUtils.cs (2)
203
else if (toolStrip is
StatusStrip
)
215
if (toolStrip is
StatusStrip
)
System\Windows\Forms\Design\ToolStripItemCustomMenuItemCollection.cs (2)
327
if (ParentTool is
StatusStrip
parent)
471
private void InsertIntoStatusStrip(
StatusStrip
parent, Type t)
System\Windows\Forms\Design\ToolStripTemplateNode.cs (1)
1407
if (component is
StatusStrip
)
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ToolStripActionListTests.cs (1)
149
var
statusStrip = new StatusStrip
System.Windows.Forms.Tests (74)
System\Windows\Forms\AccessibleObjects\StatusStrip.StatusStripAccessibleObjectTests.cs (44)
17
using
StatusStrip
statusStrip = new()
32
using
StatusStrip
statusStrip = new();
43
using
StatusStrip
statusStrip = new()
57
using
StatusStrip
statusStrip = new()
71
using
StatusStrip
statusStrip = new();
83
using
StatusStrip
statusStrip = new();
111
using
StatusStrip
statusStrip = new();
135
using
StatusStrip
statusStrip = CreateStatusStrip(itemCount: 1, createControl: false);
146
using
StatusStrip
statusStrip = CreateStatusStrip();
155
using
StatusStrip
statusStrip = CreateStatusStrip();
212
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
224
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 0);
251
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 1);
263
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 0);
286
using
StatusStrip
statusStrip = CreateStatusStrip(ToolStripGripStyle.Hidden, layout, dock, size, canOverflow: true, itemCount: 1);
309
using
StatusStrip
statusStrip = CreateStatusStrip(ToolStripGripStyle.Hidden, layout, dock, size, canOverflow: false, itemCount: 1);
330
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock: null, size, canOverflow: false, itemCount: 3);
342
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 1);
358
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 0);
374
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
390
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
406
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
424
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
442
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
459
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
521
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
533
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 0);
544
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 0);
556
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 1);
572
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 0);
588
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 0);
605
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
621
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
637
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
659
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
681
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
698
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow, itemCount: 2);
729
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow: true, itemCount: 3);
768
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow: false, itemCount: 3);
807
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow: false, itemCount: 2);
843
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow: false, itemCount: 3);
869
using
StatusStrip
statusStrip = CreateStatusStrip(grip, layout, dock, size, canOverflow: false, itemCount: 3);
879
private
StatusStrip
CreateStatusStrip(
889
StatusStrip
statusStrip = new();
System\Windows\Forms\StatusStripTests.cs (19)
181
using
StatusStrip
control = new();
281
using
StatusStrip
control = new()
326
using
StatusStrip
control = new();
373
using
StatusStrip
control = new()
409
using
StatusStrip
control = new();
434
using
StatusStrip
control = new();
473
using
StatusStrip
control = new();
516
using
StatusStrip
control = new()
551
PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(
StatusStrip
))[nameof(ToolStrip.RenderMode)];
552
using
StatusStrip
control = new();
579
PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(
StatusStrip
))[nameof(ToolStrip.RenderMode)];
580
using
StatusStrip
control = new();
608
using
StatusStrip
control = new();
615
using
StatusStrip
control = new();
703
using
StatusStrip
control = new()
739
using
StatusStrip
control = new()
801
using
StatusStrip
control = new();
841
using
StatusStrip
control = new()
905
using
StatusStrip
control = new()
System\Windows\Forms\StatusStripTests.Rendering.cs (1)
17
using
StatusStrip
statusStrip = new StatusStrip
System\Windows\Forms\ToolStripControlHostTests.cs (4)
1388
using
StatusStrip
statusParent = new();
1456
using
StatusStrip
statusParent = new();
3101
using
StatusStrip
statusParent = new();
3170
using
StatusStrip
statusParent = new();
System\Windows\Forms\ToolStripItemTests.cs (6)
2082
using
StatusStrip
owner = new();
2093
using
StatusStrip
parent = new();
6445
using
StatusStrip
statusOwner = new();
6494
using
StatusStrip
statusOwner = new();
6967
using
StatusStrip
statusParent = new();
7023
using
StatusStrip
statusParent = new();
TestPassApp (2)
Menu_Toolbars_controls.Designer.cs (1)
646
private
StatusStrip
statusStrip1;
ToolStripContainer.Designer.cs (1)
623
private System.Windows.Forms.
StatusStrip
statusStrip1;
WinFormsControlsTest (1)
ToolStripTests.Designer.cs (1)
467
private System.Windows.Forms.
StatusStrip
statusStrip1;