Icon

DlhSoft Project Management Library

for Windows® Forms and .NET 2.0 SP2

ProjectView Control

ProjectView control is used to display and update a list of task items using a grid view and an attached Gantt Chart, and it is part of Project Management Library for Windows® Forms 2.0.


Screenshots and Intro Source Code

  • Basic usage:

    ProjectView basic usage

    Project p = new Project("My Project Name");
    p.Start = DateTime.Today.AddDays(1);
    Task t1 = new Task("First Task");
    [...]
    p.Tasks.Add(t1);
    [...]
    t1.Duration = 3;
    [...]
    Resource r1 = new Resource("John");
    [...]
    p.Resources.Add(r1);
    [...]
    t1.Assignments.Add(new Assignment(r1));
    [...]
    myProjectView.Project = p;

  • Custom columns:

    ProjectView custom columns
  • Custom appearance:

    ProjectView custom appearance
  • Custom scale:

    ProjectView custom scale
  • Bar templating:

    ProjectView bar templating

Related Components

Terms of Use Privacy Statement