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)
2584
public class SubProgressBar :
ProgressBar
74 instantiations of ProgressBar
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\MyServices\Internal\ProgressDialog.vb (1)
126
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)
17
using ProgressBar ownerControl =
new
()
44
using ProgressBar ownerControl =
new
()
79
using ProgressBar ownerControl =
new
();
102
using ProgressBar ownerControl =
new
()
115
using ProgressBar progressBar =
new
();
143
using ProgressBar progressBar =
new
();
System\Windows\Forms\BinaryFormat\WinFormsBinaryFormattedObjectTests.cs (1)
295
{ new
ProgressBar
(), new string[] { "DataContext: Object", "Tag: Object" } },
System\Windows\Forms\ProgressBarTests.cs (63)
199
using ProgressBar control =
new
()
221
using ProgressBar control =
new
()
237
using ProgressBar control =
new
();
299
using ProgressBar control =
new
();
336
using ProgressBar control =
new
();
344
using ProgressBar control =
new
()
365
using ProgressBar control =
new
()
496
using ProgressBar control =
new
();
539
using ProgressBar control =
new
()
563
using ProgressBar control =
new
();
591
using ProgressBar control =
new
();
627
using ProgressBar control =
new
();
643
using ProgressBar control =
new
();
677
using ProgressBar control =
new
()
694
using ProgressBar control =
new
();
722
using ProgressBar control =
new
();
758
using ProgressBar control =
new
();
777
using ProgressBar control =
new
()
805
using ProgressBar control =
new
()
824
using ProgressBar control =
new
()
866
using ProgressBar control =
new
()
898
using ProgressBar control =
new
();
914
using ProgressBar control =
new
()
936
using ProgressBar control =
new
()
951
using ProgressBar control =
new
()
965
using ProgressBar control =
new
();
997
using ProgressBar control =
new
();
1011
using ProgressBar control =
new
()
1034
using ProgressBar control =
new
()
1047
using ProgressBar control =
new
()
1061
using ProgressBar control =
new
()
1096
using ProgressBar control =
new
();
1104
using ProgressBar control =
new
()
1121
using ProgressBar control =
new
();
1149
using ProgressBar control =
new
();
1192
using ProgressBar control =
new
()
1232
using ProgressBar control =
new
()
1282
using ProgressBar control =
new
()
1320
using ProgressBar control =
new
()
1357
using ProgressBar control =
new
()
1374
using ProgressBar control =
new
()
1406
using ProgressBar control =
new
()
1423
using ProgressBar control =
new
()
1443
using ProgressBar control =
new
();
1474
using ProgressBar control =
new
()
1506
using ProgressBar control =
new
();
1514
using ProgressBar control =
new
()
1536
using ProgressBar control =
new
();
1572
using ProgressBar control =
new
()
1611
using ProgressBar control =
new
()
1628
using ProgressBar control =
new
();
1656
using ProgressBar control =
new
();
1698
using ProgressBar control =
new
()
1719
using ProgressBar control =
new
()
1756
using ProgressBar control =
new
();
1854
using ProgressBar control =
new
()
1868
using ProgressBar control =
new
()
1895
using ProgressBar control =
new
()
2507
using ProgressBar control =
new
()
2522
using ProgressBar control =
new
()
2550
using ProgressBar control =
new
()
2561
using ProgressBar control =
new
();
2580
using ProgressBar control =
new
();
TestPassApp (1)
CommonControl2.Designer.cs (1)
48
this.progressBar1 = new System.Windows.Forms.
ProgressBar
();
WinFormsControlsTest (1)
MultipleControls.Designer.cs (1)
34
this.progressBar1 = new System.Windows.Forms.
ProgressBar
();
94 references to ProgressBar
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\MyServices\Internal\ProgressDialog.vb (1)
23
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 (70)
System\Windows\Forms\AccessibleObjects\Control.ControlAccessibleObjectTests.cs (1)
32
typeof(
ProgressBar
),
System\Windows\Forms\AccessibleObjects\ProgressBarAccessibleObjectTests.cs (6)
17
using
ProgressBar
ownerControl = new()
44
using
ProgressBar
ownerControl = new()
79
using
ProgressBar
ownerControl = new();
102
using
ProgressBar
ownerControl = new()
115
using
ProgressBar
progressBar = new();
143
using
ProgressBar
progressBar = new();
System\Windows\Forms\ProgressBarTests.cs (63)
199
using
ProgressBar
control = new()
221
using
ProgressBar
control = new()
237
using
ProgressBar
control = new();
299
using
ProgressBar
control = new();
336
using
ProgressBar
control = new();
344
using
ProgressBar
control = new()
365
using
ProgressBar
control = new()
496
using
ProgressBar
control = new();
539
using
ProgressBar
control = new()
563
using
ProgressBar
control = new();
591
using
ProgressBar
control = new();
627
using
ProgressBar
control = new();
643
using
ProgressBar
control = new();
677
using
ProgressBar
control = new()
694
using
ProgressBar
control = new();
722
using
ProgressBar
control = new();
758
using
ProgressBar
control = new();
777
using
ProgressBar
control = new()
805
using
ProgressBar
control = new()
824
using
ProgressBar
control = new()
866
using
ProgressBar
control = new()
898
using
ProgressBar
control = new();
914
using
ProgressBar
control = new()
936
using
ProgressBar
control = new()
951
using
ProgressBar
control = new()
965
using
ProgressBar
control = new();
997
using
ProgressBar
control = new();
1011
using
ProgressBar
control = new()
1034
using
ProgressBar
control = new()
1047
using
ProgressBar
control = new()
1061
using
ProgressBar
control = new()
1096
using
ProgressBar
control = new();
1104
using
ProgressBar
control = new()
1121
using
ProgressBar
control = new();
1149
using
ProgressBar
control = new();
1192
using
ProgressBar
control = new()
1232
using
ProgressBar
control = new()
1282
using
ProgressBar
control = new()
1320
using
ProgressBar
control = new()
1357
using
ProgressBar
control = new()
1374
using
ProgressBar
control = new()
1406
using
ProgressBar
control = new()
1423
using
ProgressBar
control = new()
1443
using
ProgressBar
control = new();
1474
using
ProgressBar
control = new()
1506
using
ProgressBar
control = new();
1514
using
ProgressBar
control = new()
1536
using
ProgressBar
control = new();
1572
using
ProgressBar
control = new()
1611
using
ProgressBar
control = new()
1628
using
ProgressBar
control = new();
1656
using
ProgressBar
control = new();
1698
using
ProgressBar
control = new()
1719
using
ProgressBar
control = new()
1756
using
ProgressBar
control = new();
1854
using
ProgressBar
control = new()
1868
using
ProgressBar
control = new()
1895
using
ProgressBar
control = new()
2507
using
ProgressBar
control = new()
2522
using
ProgressBar
control = new()
2550
using
ProgressBar
control = new()
2561
using
ProgressBar
control = new();
2580
using
ProgressBar
control = new();
TestPassApp (1)
CommonControl2.Designer.cs (1)
294
private System.Windows.Forms.
ProgressBar
progressBar1;
WinFormsControlsTest (1)
MultipleControls.Designer.cs (1)
332
private System.Windows.Forms.
ProgressBar
progressBar1;