1 type derived from ProgressBar
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.ToolStripProgressBarControl.cs (1)
8internal class ToolStripProgressBarControl : ProgressBar
2 instantiations of ProgressBar
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\MyServices\Internal\ProgressDialog.vb (1)
126ProgressBarWork = New ProgressBar
PresentationUI (1)
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (1)
40this.progressBar1 = new System.Windows.Forms.ProgressBar();
22 references to ProgressBar
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\MyServices\Internal\ProgressDialog.vb (1)
23Friend WithEvents ProgressBarWork As ProgressBar
PresentationUI (1)
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (1)
149private 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)
13internal ProgressBarAccessibleObject(ProgressBar owner) : base(owner) 50internal override double Maximum => this.TryGetOwnerAs(out ProgressBar? owner) ? owner.Maximum : 0; 52internal override double Minimum => this.TryGetOwnerAs(out ProgressBar? owner) ? owner.Minimum : 0; 56internal override double RangeValue => this.TryGetOwnerAs(out ProgressBar? owner) ? owner.Value : 0;
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.cs (4)
41public ProgressBar ProgressBar 45return (ProgressBar)Control; 252if (control is ProgressBar bar) 263if (control is ProgressBar bar)
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.ToolStripProgressBarControlAccessibleObject.cs (1)
11internal class ToolStripProgressBarControlAccessibleObject : ProgressBar.ProgressBarAccessibleObject