Background Image

Knowledge base articles about
definitions

Search DlhSoft Team's blog for definitions

If you have a schedule definition string and would like to dynamically create a schedule object represented by that string (for example, to set it as the Schedule property of a Gantt Chart control), you can use the approach presented below (note that ScheduleDefinitionManager is a static class available within DlhSoft.Windows.Data namespace, and hosted by DlhSoft.ProjectData.Core…

The tasks within Gantt Chart Library for WPF or Project Management Library for WPF are defined using these main timing related properties: Schedule: defines working and nonworking time for the task on the timeline (for example, Monday-Friday 8 AM - 4 PM is working time, each week, no holidays); if schedule is null for a specific task (default situation)…

At initialization time, task items are defined using these main timing related properties: Start: date and time value to start work; Finish: date and time value to finish work; if you need to compute it based on the Start value and an effort value, use the GetFinish method provided by the component instance: item.Finish = component.GetFinish(item.Start, effort); CompletedFinish: date and time val…