b6257ae0e9
git-svn-id: file:///srv/devel/repo-conversion/nuwi@4 d2e56fa2-650e-0410-a79f-9358c0239efd
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
|