Nuclex.Windows.Forms/Source/TrackingBar/TrackingBar.cs
Markus Ewald b6257ae0e9 Added empty class for planned TrackingBar control; copied CPL statement in front of all source files
git-svn-id: file:///srv/devel/repo-conversion/nuwi@4 d2e56fa2-650e-0410-a79f-9358c0239efd
2007-05-11 21:23:35 +00:00

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