Tagged Questions

1
vote
2answers
218 views

C# prevent default action on a listbox control when the right or left arrow keys are pressed

I have a listbox control in a windows app and I want to disable the default right and left arrow keydown event triggers. Currently when you press right or left arrows the selected item travels up and ...
0
votes
4answers
170 views

Hide the Resize arrow in the form C#

In my C# application I have set the form border to Fixed3D, as I don't want to re-size it. However, the arrow on the bottom right of the form still appears for re-size even though it doesn't allow ...
0
votes
3answers
1k views

Draw an Arrow on a Picturebox in C#

I want to be able to draw a straight arrow from one mouse click location to another, as if you were doing it in PowerPoint. It needs to be able to draw on a PictureBox as well, please help, Thanks
0
votes
2answers
593 views

Arrow keys and changing control's focus hang the application

I have a usercontrol that contains a FlowLayoutPanel (topdown flow) with a bunch of radiobuttons. The control exposes a CheckedChanged event that fires whenever one of the radiobuttons's check ...
-4
votes
2answers
332 views

Using Arrow Keys to navigate in the Console

Im making a menu. I want to use arrow keys to select from my list. char move; do { move = (char)_getch(); if (move == 38) { // Move Indicator Up } else if (move == ...