Fully implemented the tracking bar control which will now act as a specialized progress bar for tracking progressions
git-svn-id: file:///srv/devel/repo-conversion/nuwi@7 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
e48d9d3643
commit
19c55f370e
7 changed files with 202 additions and 19 deletions
|
@ -21,15 +21,14 @@ License along with this library
|
|||
namespace Nuclex.Windows.Forms {
|
||||
|
||||
partial class ContainerListView {
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
|
||||
/// <summary>Required designer variable.</summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
/// <summary>Clean up any resources being used.</summary>
|
||||
/// <param name="disposing">
|
||||
/// true if managed resources should be disposed; otherwise, false.
|
||||
/// </param>
|
||||
protected override void Dispose(bool disposing) {
|
||||
if(disposing && (components != null)) {
|
||||
components.Dispose();
|
||||
|
@ -40,8 +39,8 @@ namespace Nuclex.Windows.Forms {
|
|||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent() {
|
||||
components = new System.ComponentModel.Container();
|
||||
|
|
|
@ -17,6 +17,7 @@ You should have received a copy of the IBM Common Public
|
|||
License along with this library
|
||||
*/
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
|
@ -32,7 +33,7 @@ namespace Nuclex.Windows.Forms {
|
|||
/// <remarks>
|
||||
/// There basically were two possible design choices: Provide a specialized
|
||||
/// ListViewSubItem that carries a Control instead of a string or manage the
|
||||
/// embedded controls in seperation of the ListView's items. The first option
|
||||
/// embedded controls seperate of the ListView's items. The first option
|
||||
/// would require a complete rewrite of the ListViewItem class and its related
|
||||
/// support classes, all of which are surprisingly large and complex. Thus,
|
||||
/// the less clean but more doable latter option has been chosen.
|
||||
|
|
|
@ -17,6 +17,7 @@ You should have received a copy of the IBM Common Public
|
|||
License along with this library
|
||||
*/
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Forms;
|
||||
|
|
|
@ -17,6 +17,7 @@ You should have received a copy of the IBM Common Public
|
|||
License along with this library
|
||||
*/
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue