I have used a runtime draggable label in WPF which i found here.
I want to move this label on key up and down button. The problem is that label does not register key down or key up event. How to do this?
I was told here that i should disguise a textbox as a label but then the dragging facility disappears. How to achieve label key down without disguise?
You can move the label by this way-
Add Mouse down event to the label and give it focus-
Set this property for this label-
This way the label will respond to your key down event.