using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; namespace Nuclex.Windows.Forms { /// Progress bar for tracking the progress of background operations public partial class TrackingBar : ProgressBar { /// Initializes a new tracking bar public TrackingBar() { InitializeComponent(); } } } // namespace Nuclex.Windows.Forms