Esempio n. 1
0
 private void TestGantt_OnItemResized(CustomGanttItem item, DateTime oldStart, int oldDuration)
 {
     MessageBox.Success($"{item.Id}", $"{item.StartDate?.ToShortDateString()} for {item.Duration} days");
 }
Esempio n. 2
0
 private void TestGantt_OnItemProgressDragged(CustomGanttItem item, float oldProgress)
 {
     MessageBox.Success($"{item.Id}", $"progression changed to {item.Progress}");
 }
Esempio n. 3
0
 private void TestGantt_OnItemMoved(CustomGanttItem item, DateTime oldStart)
 {
     MessageBox.Success($"{item.Id}", $"{item.StartDate?.ToShortDateString()}");
 }