22 lines
524 B
C#
22 lines
524 B
C#
|
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 {
|
||
|
|
||
|
/// <summary>Progress bar for tracking the progress of background operations</summary>
|
||
|
public partial class TrackingBar : ProgressBar {
|
||
|
|
||
|
/// <summary>Initializes a new tracking bar</summary>
|
||
|
public TrackingBar() {
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
} // namespace Nuclex.Windows.Forms
|