RadiantQ Forum

Product => WPF Gantt Package => Topic started by: ilkka.paloheimo on February 05, 2018, 01:17:58 PM

Title: How to disable 'Task-box' during drag and drop?
Post 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

Title: Re: How to disable 'Task-box' during drag and drop?
Post by: Rajagopal on February 05, 2018, 03:41:35 PM
Ilkka,

You can disable/customize the MovingInfoPopup content (information while taskbar drag and drop) like this,

Here is the C# code,
Code: [Select]
void fxgantt_Loaded(object sender, RoutedEventArgs e)
{
....
this.fxgantt.GanttChart.MovingInfoPopup = null;
}

Similarly, you can disable/customize the ResizeInfoPopup.

Thanks,
Raja.
Title: Re: How to disable 'Task-box' during drag and drop?
Post by: ilkka.paloheimo on February 05, 2018, 04:21:32 PM
Thank you Raja.