0
votes
0answers
12 views

Get segment of path geometry at mouse position

My objective is to insert a point(vertex) at mouse click position on a path geometry. I am facing problem determining the index within the pointcollection at which the new point is to be inserted. ...
1
vote
3answers
49 views

Default cursor in WPF?

I am changing cursor of a control in WPF. btn.Cursor = Cursors.Wait; After carrying out an operaton, I want to revert back to the default cursor, I am did not find any Cursors.Default, how to get ...
0
votes
1answer
46 views

How to convert IntPtr to Cursor or SafeHandle?

I'm in .NET 3.5, I have found CursorInteropHelper.Create() method here. However it is absolutely unclear how do I convert IntPtr for cursor to SafeHandle. The list of implementations of SafeHandle ...
-1
votes
2answers
89 views

Changing cursor after task is complete

I am attempting to change the mouse cursor to Wait before a task begins, and Arrow when it's completed. However, the cursor seems to change from one to the other straight away. This is my code: ...
1
vote
1answer
102 views

How do I change to a black Windows arrow cursor?

I've noticed that both Visual studio and blend change from the standard Windows white cursor to a black cursor when you hover over certain areas. I looked in the Cursors enumeration and couldn't find ...
0
votes
4answers
157 views

WPF Get the Cursor in the box

Hi all im having a Radio Button and Text box in front it, once i check the button the text box will become visible! But i also want to my Cursor be visible in a text box to so easier for user to type ...
0
votes
1answer
146 views

WPF overwrite all default mouse cursors

is it possible to change all default cursors (defined by .NET) to changed into other cursors for a single skin style? I mean that if the mouse touch the current window all default cursors from the ...
3
votes
1answer
171 views

DoDragDrop() - droptarget is another application (word or excel)

In my WPF application I have implimented drag drop and am placing my PNG image in a DataObject then passing that to the DoDragDrop method. It seems rather hit-and-miss as to which applications I can ...
1
vote
2answers
162 views

Is there a restriction to cursor sizes in VB.net

My application makes use of a custom cursor loaded from a predefined file (.cur) during runtime. I know windows uses a standard 32x32 pixels cursor or a 48x48 pixel cursor for high DPI devices. ...
0
votes
0answers
212 views

WPF DataGrid edit mode cursor DOWN ARROW key press to work like Word with Wrapped text

If I wrap the text in a WPF DataGrid (Dot net 4.0). See my answer to Enable TextWrap in dynamic DataGrid I can then edit multiline text and move up down with the arrow keys. I would like the grid to ...
0
votes
1answer
533 views

Mouse move on WPF image control using Kinect

I am trying to move the mouse using the kinect . I achieved using the interopservices in c#. Now i want to move mouse only inside the image control . so mouse should not move on other layouts. Is ...
0
votes
1answer
303 views

Wait cursor stuck even after application is idle until mouse is moved

(My WPF code is actually in a DLL and is being launched and interacted with by non CLR code, so this is not qutie a standard WPF application. I've never seen this behavior in a pure WPF app, but I'm ...
1
vote
1answer
873 views

Set Custom Cursor Image Hotspot in WPF

I am trying to use custom images on Cursor and I did it with these code. public static class cursorHelper { public static Cursor vertical = new ...
1
vote
2answers
247 views

Way to obtain the word cursor is on, in WPF RichTextBox Control

I would like to know how I can get the word that current cursor is on, in WPF RichTextBox. I am aware that RichTextBox has Selection Property. However, this only gives me the text that is ...
1
vote
1answer
128 views

Change size of cursor “hittest” bounding area in WPF

Is it possible to increase the size of the point that is used for hit testing using the cursor in WPF? I would like to be able to hit test with something similar to the entire area covered by the ...
0
votes
0answers
109 views

when moving the mouse around why won't windows form cursor current type change

In a wpf application I want to be able to detect when the default cursor becomes the Ibeam cursor. System.Windows.Forms.Cursor.Current.Equals(System.Windows.Forms.Cursors.IBeam) However the ...
1
vote
1answer
2k views

How do I display wait cursor during a WPF application's startup?

Here are the basic events I want to happen when my WPF application starts. This is very similar to how Word starts on my machine. Display busy cursor. Perform basic initialization. This takes a ...
0
votes
1answer
189 views

How to display wait cursor when focusing on a RTB in WPF

So what is happening right now is the following. When I am focusing on a rich text box in my WPF application, I can't seem to change the cursor from a Carat (or what ever the 'I' text selection cursor ...
3
votes
1answer
326 views

How to change Windows cursor in WPF?

I like to change the cursor, when user clicks a button. I can use FrameworkElement.Cursor. But it only changes the cursor for my current App. But I need my entire Windows cursor should change. I ...
0
votes
1answer
306 views

How to get the current system cursor and save it to file xxx.cur?

I know how set the system cursor from xxx.cur file, but I want to know how to save the current system cursor to a file. In WPF, set system cursor can use the following code: ...
7
votes
4answers
2k views

MVVM Wait Cursor how to set the.wait cursor during invocation of a command?

Scenario: User clicks a button on the View This invokes a command on the ViewModel, DoProcessing How, and where does the Wait cursor get set, considering the responsibilitues of View and ViewModel? ...
1
vote
1answer
502 views

Custom cursor for entire WPF application

I am trying to get a custom cursor for my WPF application. I already have the .cur file in the Resources. In the xaml, I mentioned the resource dictionary something like this: ...
0
votes
1answer
720 views

Remove/Change Cursor when doing a Drag Drop

How can I remove the cursor when doing a Drag and Drop. I put this code this.Cursor = Cursors.None on the start up of the program and DragDrop event, it works well on the the startup but in dragdrop ...
1
vote
1answer
1k views

I want to change my cursor in wpf to an custom .cur file?

I want to change my mouse pointer to an custom cursor in my application. So when my application starts, i want the custom cursor, and when it stops i want it gone. How to do this in c# behind the ...
0
votes
1answer
579 views

Where do I find cursor files in windows 7

I know that the I can get a set of cursor files in C:/Windows/Cursors. However, I want to know where the cursor files are for when you do a DragDropEffect in C# WPF. Is this available?
0
votes
1answer
704 views

TextBox Cursor is NOT blinking

I have a WPF datagrid (4.0) with a custom column (derived from DataGridTextColumn). In GenerateEditingElement I create a custom textbox control (with an additional button) and like to set the cursor ...
1
vote
1answer
602 views

C# / WPF - Changing the Cursor global

if I set the Cursor in my Wpf app like this: this.Cursor = System.Windows.Input.Cursors.Hand; it only effects the Wpf app, but I want to do this change Windows global - any ideas?
0
votes
1answer
1k views

How to change default mouse cursor for the whole WPF application globally?

In my WPF application I am using only one mouse cursor. Is there any way to change this cursor for the whole WPF application globally?
1
vote
2answers
2k views

A tooltip or something similar move with cursor in wpf

Is it possible to move a Tooltip or something like that with cursor when mouse goes on a specific control? I tried TextBlock, but Margin property not work. private TextBlock tooltip = new ...
0
votes
1answer
401 views

WPF equivalent of Control.CursorChanged event

I am trying to change my mouse cursor at certain point when I'm dragging my mouse around in a wpf listview. However, when I set my mouse, it quickly gets overridden by something else, and get changed ...
0
votes
1answer
444 views

WPF setting button cursor to busy what does it exactly mean

I would like to set the cursor to busy status when the button is clicked. In a Winform i would have changed the cursor in the click event and revert back after the click logic is executed. Now ...
1
vote
2answers
277 views

WPF Cursor casting problem

I have a System.Windows.Forms.Cursor with me and wanted to assign it to a WPF's image.Cursor property which happens to be of System.Windows.Input.Cursor type. The constraint here is, the former Cursor ...
3
votes
1answer
679 views

disable mouse clicks on displaying busy/wait cursor in WPF

I am currently displaying a busy/wait cursor using Mouse.OverrideCursor = Cursors.Wait. But when the wait cursor is on it is still able to recognize the mouse clicks happenned during that time. Is ...
0
votes
1answer
154 views

the Caret of textbox don't disappear after override OnGotFocus and OnLostFocus

I create a custom control, inherit from Textbox,and override the function OnGotFocus and OnLostFocus in control. Then when I use the control, the Caret do not disappear after focus is lost. I check ...
0
votes
1answer
262 views

Simulated Visual Drag/Drop (What is Wrong w/ This Code?)

I have a WPF 4/VB.net 2010 project, and I'm trying to do a visual "drag and drop" (having an object follow the mouse on MouseUp and "stick" on MouseDown.) I have the following code behind: Private ...
1
vote
1answer
571 views

How to move my cursor to the left in in my ComboBox?

I would like to move my cursor to the start of the text in my ComboBox. This is what it looks like at the moment: I did try the following on the Closed Event: ...
1
vote
0answers
398 views

How can I hide the cursor in transparent WPF window?

How can I hide the cursor in a WPF window that is fully transparent (alpha=0). I tried the usual this.Cursor = System.Windows.Input.Cursors.None; and it works on areas with content where alpha > 0 ...
4
votes
2answers
4k views

WPF: CellEditingTemplate how can I set focus on the inner control by double click or on click

I wrote a usercontrol of DataGrid with CellEditingTemplate. The DataTemplate of this editing-Template is a TextBox, and the cursor will go into the textbox by three times click, what can i do, if i ...
1
vote
2answers
521 views

wpf scale to textBox, textBox can not display cursor when i click textBox

First, I Zoom(ScaleTransform) the TextBox, then mouse to click on the TextBox. Sometimes can display the cursor, and sometimes can notdisplay the cursor. Looking for a solution to solution to the ...
2
votes
2answers
1k views

Hide caret in WPF TextBox

Is there a way to hide the cursor in a WPF textbox? I know there is Cursor="None" but that only affects the mouse cursor. I want to hide the "text cursor".
1
vote
1answer
450 views

Strange WPF Thumb Cursor behavior

i´m currently facing a strange behavior with Cursors on WPF thumb controls. i have a thumb with a multibinding on the Cursor property that changes the cursor depending no the thumb´s rotationtransform ...
0
votes
1answer
1k views

WPF: image click

in WPF I draw an image with an Image Control: <Image x:Name="Image1" Width="150" Height="180" VerticalAlignment="Bottom" HorizontalAlignment="Center" Stretch="None"/> Sometimes, the image is ...
1
vote
1answer
682 views

WPF: drawing own cursor - nontrivial problem

i need to implement a cursor with some very specific features: it has to be animated because after n seconds it automatically clicks - so the animation is feedback for the user when the click will ...
6
votes
1answer
509 views

How to intercept execution of a RoutedCommand within the view? (WPF / MVVM)

In a WPF / MVVM application, I am trying to find a code-efficient way to set the main view cursor to Cursors.Wait prior to any lengthy operation and to restore it to the default cursor after ...
0
votes
1answer
906 views

WPF ListView Cursor Change

I have a scrollable timeline that is made from list views. When my mouse is focused over the list view. The cursor is a open hand using the code <ControlTemplate.Triggers> <Trigger ...
4
votes
1answer
732 views

WPF drag cursor in default cursors

I'd like to use the default drag mouse cursor on mouse-over a UIElement to indicate a control is draggable. The cursor that looks like an arrow and a FocusVisual rectangle with an overlapping plus ...
2
votes
1answer
416 views

Avoid hourglass mouse cursor when calling a web-service?

I don't know if this is a general web-services issue or just my specific scenario, which is a WPF application with a DispatcherTimer calling a web-service method. Whenever the timer is called, the ...
1
vote
2answers
1k views

Why does my TextBox with custom control template not have a visible text cursor?

I have a custom control template which is set via the style property on a TextBox. The visual poperties are set correctly, even typing to the textbox works, but there is no insertion cursor (the | ...
1
vote
1answer
3k views

Change mouse cursor while left mouse button is pressed?

I need to change the mouse cursor while the left mouse button is pressed. Unfortunately changes to the mouse cursor are ignored until the left mouse button is released. Is there any workaround to ...
2
votes
1answer
131 views

Show underlying applications mouse cursor when hovering over visible section of my application

I am writing a WPF application that allows the user to draw over the entire screen when the right mouse button is held down. I use a full screen transparent overlay form to achieve this, however, as I ...

1 2