The mousecapture tag has no wiki summary.
0
votes
1answer
41 views
Mouse.Capture returns false and fails
To simulate a modal dialog in WPF, I display a Window and call: Mouse.Capture(dialogBoxArea, CaptureMode.SubTree);
The call returns false.
Mouse.Captured is null.
dialogBoxArea.Visibility is ...
4
votes
2answers
85 views
Why the new Form dosen't stick to the mouse movement position when moving the mouse fast?
I have this event:
protected override void OnMouseDown(MouseEventArgs e)
{
mOffset = new Point(Width / 2 - e.X, Height / 2 - e.Y);
mCurrentPoint = PointToScreen(new Point(e.X + mOffset.X, e.Y ...
1
vote
1answer
152 views
Capture mouse messages when a ToolStripDropDown is shown
I am trying to create a "tooltip" which contains a custom control. I implemented it using ToolStripDropDown which does what I need - closes when the user clicks somewhere else, or activates another ...
0
votes
2answers
227 views
WPF: why CaptureMouse may fail?
I have a quite complex view with multiple tabs inside tab control. On one tab there is a control with adorner layer. Adorner layer calling CaptureMouse in MouseLeftButtonDown event handler to capture ...
0
votes
1answer
124 views
jQuery datetimepicker - The mouse is captured while selecting time
I have a page with a DateTimePicker attached to a textbox. The problem is that the mouse is captured by the hour slider button when I open datetimepicker and click on the hour (or minute) slider ...
0
votes
2answers
149 views
How do I capture the mouse when a Silverlight RepeatButton is depressed?
I have a RepeatButton on a UserControl that acts as the up button. The control is a number spinner of sorts. When the number value goes from 9 to 10 the up button is released because it moves out ...
1
vote
1answer
358 views
How to find if Mouse is already Captured
I created a usercontrol which contains a Canvas and a Button on the Canvas. To be able to move the button over the canvas I attached a DragBehavior shown below:
class DragOverCanvasBehavior : ...
1
vote
1answer
261 views
flash release mouse capture on mouse out
I have a flash app loaded in an iframe. User mouses down in flash and goes outside of stage. When user goes outside of stage, is there a way to release the mouse capture from flash so that parent ...
2
votes
1answer
260 views
wpf mousecapture being force released immediately
I'm building a user control that includes a flyout panel.
When I click the button to open the panel I'm trying to capture the mouse so that I can detect if the user clicks off the flyout panel so I ...
12
votes
4answers
1k views
wpf popup doesn't close automatically when datagrid inside popup captures the mouse
I have a popup with StaysOpen=False so I want to close it by clicking anywhere outside of popup. Inside a popup I have a DataGrid. If I open popup and then click somewhere else the popup will be ...