1 type derived from ProgressBar
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripProgressBar.cs (1)
520internal class ToolStripProgressBarControl : ProgressBar {
1 instantiation of ProgressBar
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripProgressBar.cs (1)
273ProgressBar progressBar = AccessibilityImprovements.Level3 ? new ToolStripProgressBarControl() : new ProgressBar();
22 references to ProgressBar
System.Windows.Forms (22)
winforms\Managed\System\WinForms\ProgressBar.cs (14)
68/// Initializes a new instance of the <see cref='System.Windows.Forms.ProgressBar'/> class in its default 276/// Gets or sets the font of text in the <see cref='System.Windows.Forms.ProgressBar'/>. 326/// Gets or sets the marquee animation speed of the <see cref='System.Windows.Forms.ProgressBar'/>. 375/// Gets or sets the maximum value of the <see cref='System.Windows.Forms.ProgressBar'/>. 376/// Gets or sets the maximum value of the <see cref='System.Windows.Forms.ProgressBar'/>. 414/// Gets or sets the minimum value of the <see cref='System.Windows.Forms.ProgressBar'/>. 538/// Gets or sets the amount that a call to <see cref='System.Windows.Forms.ProgressBar.PerformStep'/> 612/// Gets or sets the current position of the <see cref='System.Windows.Forms.ProgressBar'/>. 757/// Advances the current position of the <see cref='System.Windows.Forms.ProgressBar'/> by the 829/// Advances the current position of the <see cref='System.Windows.Forms.ProgressBar'/> 830/// by the amount of the <see cref='System.Windows.Forms.ProgressBar.Step'/> 918internal ProgressBarAccessibleObject(ProgressBar owner) : base(owner) { 921private ProgressBar OwningProgressBar 925return Owner as ProgressBar;
winforms\Managed\System\WinForms\ToolStripProgressBar.cs (8)
52public ProgressBar ProgressBar { 54return this.Control as ProgressBar; 273ProgressBar progressBar = AccessibilityImprovements.Level3 ? new ToolStripProgressBarControl() : new ProgressBar(); 289ProgressBar bar = control as ProgressBar; 302ProgressBar bar = control as ProgressBar; 544internal class ToolStripProgressBarControlAccessibleObject : ProgressBar.ProgressBarAccessibleObject {