2 types derived from ProgressBar
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.ToolStripProgressBarControl.cs (1)
8
internal class ToolStripProgressBarControl :
ProgressBar
System.Windows.Forms.Tests (1)
System\Windows\Forms\ProgressBarTests.cs (1)
2582
public class SubProgressBar :
ProgressBar
74 instantiations of ProgressBar
Accessibility_Core_App (1)
CommonControl2.Designer.cs (1)
48
this.progressBar1 = new System.Windows.Forms.
ProgressBar
();
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\MyServices\Internal\ProgressDialog.vb (1)
124
ProgressBarWork = New
ProgressBar
PresentationUI (1)
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (1)
40
this.progressBar1 = new System.Windows.Forms.
ProgressBar
();
System.Windows.Forms.Tests (70)
System\Windows\Forms\AccessibleObjects\ProgressBarAccessibleObjectTests.cs (6)
15
using ProgressBar ownerControl =
new
()
42
using ProgressBar ownerControl =
new
()
77
using ProgressBar ownerControl =
new
();
100
using ProgressBar ownerControl =
new
()
113
using ProgressBar progressBar =
new
();
141
using ProgressBar progressBar =
new
();
System\Windows\Forms\BinaryFormat\WinFormsBinaryFormattedObjectTests.cs (1)
191
{ new
ProgressBar
(), new string[] { "DataContext: Object", "Tag: Object" } },
System\Windows\Forms\ProgressBarTests.cs (63)
197
using ProgressBar control =
new
()
219
using ProgressBar control =
new
()
235
using ProgressBar control =
new
();
297
using ProgressBar control =
new
();
334
using ProgressBar control =
new
();
342
using ProgressBar control =
new
()
363
using ProgressBar control =
new
()
494
using ProgressBar control =
new
();
537
using ProgressBar control =
new
()
561
using ProgressBar control =
new
();
589
using ProgressBar control =
new
();
625
using ProgressBar control =
new
();
641
using ProgressBar control =
new
();
675
using ProgressBar control =
new
()
692
using ProgressBar control =
new
();
720
using ProgressBar control =
new
();
756
using ProgressBar control =
new
();
775
using ProgressBar control =
new
()
803
using ProgressBar control =
new
()
822
using ProgressBar control =
new
()
864
using ProgressBar control =
new
()
896
using ProgressBar control =
new
();
912
using ProgressBar control =
new
()
934
using ProgressBar control =
new
()
949
using ProgressBar control =
new
()
963
using ProgressBar control =
new
();
995
using ProgressBar control =
new
();
1009
using ProgressBar control =
new
()
1032
using ProgressBar control =
new
()
1045
using ProgressBar control =
new
()
1059
using ProgressBar control =
new
()
1094
using ProgressBar control =
new
();
1102
using ProgressBar control =
new
()
1119
using ProgressBar control =
new
();
1147
using ProgressBar control =
new
();
1190
using ProgressBar control =
new
()
1230
using ProgressBar control =
new
()
1280
using ProgressBar control =
new
()
1318
using ProgressBar control =
new
()
1355
using ProgressBar control =
new
()
1372
using ProgressBar control =
new
()
1404
using ProgressBar control =
new
()
1421
using ProgressBar control =
new
()
1441
using ProgressBar control =
new
();
1472
using ProgressBar control =
new
()
1504
using ProgressBar control =
new
();
1512
using ProgressBar control =
new
()
1534
using ProgressBar control =
new
();
1570
using ProgressBar control =
new
()
1609
using ProgressBar control =
new
()
1626
using ProgressBar control =
new
();
1654
using ProgressBar control =
new
();
1696
using ProgressBar control =
new
()
1717
using ProgressBar control =
new
()
1754
using ProgressBar control =
new
();
1852
using ProgressBar control =
new
()
1866
using ProgressBar control =
new
()
1893
using ProgressBar control =
new
()
2505
using ProgressBar control =
new
()
2520
using ProgressBar control =
new
()
2548
using ProgressBar control =
new
()
2559
using ProgressBar control =
new
();
2578
using ProgressBar control =
new
();
WinFormsControlsTest (1)
MultipleControls.Designer.cs (1)
34
this.progressBar1 = new System.Windows.Forms.
ProgressBar
();
96 references to ProgressBar
Accessibility_Core_App (1)
CommonControl2.Designer.cs (1)
294
private System.Windows.Forms.
ProgressBar
progressBar1;
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\MyServices\Internal\ProgressDialog.vb (1)
21
Friend WithEvents ProgressBarWork As
ProgressBar
PresentationUI (1)
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (1)
149
private System.Windows.Forms.
ProgressBar
progressBar1;
System.Windows.Forms (20)
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (11)
36
/// Initializes a new instance of the <see cref="
ProgressBar
"/> class in its default state.
224
/// Gets or sets the marquee animation speed of the <see cref="
ProgressBar
"/>.
265
/// Gets or sets the maximum value of the <see cref="
ProgressBar
"/>.
303
/// Gets or sets the minimum value of the <see cref="
ProgressBar
"/>.
463
/// Gets or sets the current position of the <see cref="
ProgressBar
"/>.
567
/// Advances the current position of the <see cref="
ProgressBar
"/> by the specified increment
638
/// Advances the current position of the <see cref="
ProgressBar
"/> by the amount of the
679
/// <see cref="
ProgressBar
"/>.
691
/// Note: <see cref="
ProgressBar
"/> doesn't work like other controls as far as setting ForeColor/BackColor.
705
/// Creates a new AccessibleObject for this <see cref="
ProgressBar
"/> instance.
709
/// AccessibleObject for this <see cref="
ProgressBar
"/> instance.
System\Windows\Forms\Controls\ProgressBar\ProgressBar.ProgressBarAccessibleObject.cs (4)
13
internal ProgressBarAccessibleObject(
ProgressBar
owner) : base(owner)
50
internal override double Maximum => this.TryGetOwnerAs(out
ProgressBar
? owner) ? owner.Maximum : 0;
52
internal override double Minimum => this.TryGetOwnerAs(out
ProgressBar
? owner) ? owner.Minimum : 0;
56
internal override double RangeValue => this.TryGetOwnerAs(out
ProgressBar
? owner) ? owner.Value : 0;
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.cs (4)
41
public
ProgressBar
ProgressBar
45
return (
ProgressBar
)Control;
252
if (control is
ProgressBar
bar)
263
if (control is
ProgressBar
bar)
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.ToolStripProgressBarControlAccessibleObject.cs (1)
11
internal class ToolStripProgressBarControlAccessibleObject :
ProgressBar
.ProgressBarAccessibleObject
System.Windows.Forms.Tests (72)
System\Windows\Forms\AccessibleObjects\Control.ControlAccessibleObjectTests.cs (1)
30
typeof(
ProgressBar
),
System\Windows\Forms\AccessibleObjects\ProgressBarAccessibleObjectTests.cs (6)
15
using
ProgressBar
ownerControl = new()
42
using
ProgressBar
ownerControl = new()
77
using
ProgressBar
ownerControl = new();
100
using
ProgressBar
ownerControl = new()
113
using
ProgressBar
progressBar = new();
141
using
ProgressBar
progressBar = new();
System\Windows\Forms\ProgressBarTests.cs (65)
197
using
ProgressBar
control = new()
219
using
ProgressBar
control = new()
235
using
ProgressBar
control = new();
297
using
ProgressBar
control = new();
334
using
ProgressBar
control = new();
342
using
ProgressBar
control = new()
363
using
ProgressBar
control = new()
494
using
ProgressBar
control = new();
537
using
ProgressBar
control = new()
554
yield return new object[] { Color.Empty,
ProgressBar
.DefaultForeColor, 1 };
561
using
ProgressBar
control = new();
589
using
ProgressBar
control = new();
611
Assert.Equal(
ProgressBar
.DefaultForeColor, control.ForeColor);
625
using
ProgressBar
control = new();
641
using
ProgressBar
control = new();
675
using
ProgressBar
control = new()
692
using
ProgressBar
control = new();
720
using
ProgressBar
control = new();
756
using
ProgressBar
control = new();
775
using
ProgressBar
control = new()
803
using
ProgressBar
control = new()
822
using
ProgressBar
control = new()
864
using
ProgressBar
control = new()
896
using
ProgressBar
control = new();
912
using
ProgressBar
control = new()
934
using
ProgressBar
control = new()
949
using
ProgressBar
control = new()
963
using
ProgressBar
control = new();
995
using
ProgressBar
control = new();
1009
using
ProgressBar
control = new()
1032
using
ProgressBar
control = new()
1045
using
ProgressBar
control = new()
1059
using
ProgressBar
control = new()
1094
using
ProgressBar
control = new();
1102
using
ProgressBar
control = new()
1119
using
ProgressBar
control = new();
1147
using
ProgressBar
control = new();
1190
using
ProgressBar
control = new()
1230
using
ProgressBar
control = new()
1280
using
ProgressBar
control = new()
1318
using
ProgressBar
control = new()
1355
using
ProgressBar
control = new()
1372
using
ProgressBar
control = new()
1404
using
ProgressBar
control = new()
1421
using
ProgressBar
control = new()
1441
using
ProgressBar
control = new();
1472
using
ProgressBar
control = new()
1504
using
ProgressBar
control = new();
1512
using
ProgressBar
control = new()
1534
using
ProgressBar
control = new();
1570
using
ProgressBar
control = new()
1609
using
ProgressBar
control = new()
1626
using
ProgressBar
control = new();
1654
using
ProgressBar
control = new();
1696
using
ProgressBar
control = new()
1717
using
ProgressBar
control = new()
1754
using
ProgressBar
control = new();
1852
using
ProgressBar
control = new()
1866
using
ProgressBar
control = new()
1893
using
ProgressBar
control = new()
2505
using
ProgressBar
control = new()
2520
using
ProgressBar
control = new()
2548
using
ProgressBar
control = new()
2559
using
ProgressBar
control = new();
2578
using
ProgressBar
control = new();
WinFormsControlsTest (1)
MultipleControls.Designer.cs (1)
332
private System.Windows.Forms.
ProgressBar
progressBar1;