RadiantQ Forum
Product => WPF Gantt Package => Topic started by: ilkka.paloheimo on February 05, 2018, 01:17:58 PM
-
I would like to disable this box. Or if not possible, can I edit the content?
Box content is like this at the moment:
Task
Start: 01/03/2018 0:00:00
Finish: 02/03/2018 0:00:00
-
Ilkka,
You can disable/customize the MovingInfoPopup content (information while taskbar drag and drop) like this,
Here is the C# code,
void fxgantt_Loaded(object sender, RoutedEventArgs e)
{
....
this.fxgantt.GanttChart.MovingInfoPopup = null;
}
Similarly, you can disable/customize the ResizeInfoPopup.
Thanks,
Raja.
-
Thank you Raja.