1 type derived from ProgressBar
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.ToolStripProgressBarControl.cs (1)
8
internal class ToolStripProgressBarControl :
ProgressBar
2 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
();
22 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.
231
/// Gets or sets the marquee animation speed of the <see cref="
ProgressBar
"/>.
272
/// Gets or sets the maximum value of the <see cref="
ProgressBar
"/>.
310
/// Gets or sets the minimum value of the <see cref="
ProgressBar
"/>.
470
/// Gets or sets the current position of the <see cref="
ProgressBar
"/>.
574
/// Advances the current position of the <see cref="
ProgressBar
"/> by the specified increment
645
/// Advances the current position of the <see cref="
ProgressBar
"/> by the amount of the
686
/// <see cref="
ProgressBar
"/>.
698
/// Note: <see cref="
ProgressBar
"/> doesn't work like other controls as far as setting ForeColor/BackColor.
712
/// Creates a new AccessibleObject for this <see cref="
ProgressBar
"/> instance.
716
/// 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