Hi, my customer wants to change the default behavior of Flyout panel.
One of the Floyout panel should only fly out when user click it, but not when hover over the mouse. Is it possible to do?
thanks.
Hello,
UltraDockManager has a property UnpinnedTabHoverAction that can be set to none if you don’t want to flyout the unpinned tabs on mouse over. But this property will be applied for all of the unpinned tabs instead of only one. You can set it like so:
ultraDockManager1.UnpinnedTabHoverAction = UnpinnedTabHoverAction.None;
Sincerely,
Danko Valkov
Developer Support Engineer
Infragistics, Inc.
Hi, thansk for the great help!
Another question, are we able to set the delay time of fly out longer when hover the mouse over it? Means, move the mouse on unpinned window, stay 3 seconds, then the window will fly out. User can click it to force the flyout.
Thanks.
You are able to set the delay time of the flyout window. Please be noticed that it will hide after 3 seconds only if it is non active control pane. You can use the AutoHideDelay property on the UltraDockManager control like so:
ultraDockManager1.AutoHideDelay = 3000;