I think it's a bug, but I would like to have a confirmation, and I really have no idea on how to fix it at the moment (will be updated later).
Step to reproduce with the MVVMTestApp:
I suppose that the problem come from the LayoutFloatingWindonwControl.cs, a message is probably wrongly handled, but I can't find where actually.
Please tell me if you managed to reproduce the bug, and what you think about that.
Step to reproduce with the MVVMTestApp:
- in the MainWindow, implements MouseMove on the TextBox of the FileView:
line 68: replace
<TextBox Text="{Binding TextContent, UpdateSourceTrigger=PropertyChanged}"/>
by<TextBox Text="{Binding TextContent, UpdateSourceTrigger=PropertyChanged}" MouseMove="UIElement_OnMouseMove"/>
and implement it in the code behind doing whatever you want.-
Build and run, then create a new file. Now drag the file directly above the top of the MainWindow (see this image). You'll see the event fired multiples times, altought you aren't moving your mouse over the TextBox.
I suppose that the problem come from the LayoutFloatingWindonwControl.cs, a message is probably wrongly handled, but I can't find where actually.
Please tell me if you managed to reproduce the bug, and what you think about that.