Posted 30 January 2022, 4:45 pm EST
Hello.C1.WPF.Ribbon.Ja 6.0.20213.162
How to fix(freeze) the RibbonTabItems?
Is there any property?
The event of QueryContinueDrag dose not fire, so I can not cancel.
Thanks.

Forums Home / ComponentOne / WPF Edition Topics
Posted by: info on 30 January 2022, 4:45 pm EST
Posted 30 January 2022, 4:45 pm EST
Hello.Marked as Answer
Replied 30 January 2022, 7:19 pm EST
Hi,
private void Preview_MouseMove(object sender, MouseEventArgs e)
{
if(e.Source is RibbonTabItem)
if(e.LeftButton == MouseButtonState.Pressed)
e.Handled = true;
}
Replied 30 January 2022, 9:04 pm EST
Thank you.