Tagged Questions
7
votes
7answers
7k views
KeyDown : recognizing multiple keys
How can I determine in KeyDown that Ctrl + Up was pressed.
private void listView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Control && e.KeyCode == Keys.Up)
{
...
6
votes
1answer
979 views
Override Caps Lock with Ctrl using C#
I'm writing (yet another, I know) keyboard remapper using C# and Visual Studio 2008.
I followed this guide to learn how to snap up low-level key presses. This works just fine for overriding e.g. ...
1
vote
2answers
2k views
How to assign shortcut key (something like Ctrl+F) to text box in windows form?
I am building a tool using C#. It's a Windows application. I have one text box on a form and I want to assign focus to that text box when user presses Ctrl + F or Ctrl + S.
Can anyone please tell me ...
0
votes
1answer
591 views
C# - Capturing CTRL-Mouse wheel in WebBrowser control
I'm developing a Windows Forms application in C# with an embedded WebBrowser control to "dummy-proof" (i.e. disable context menus, back button, free navigation, etc.) access to a third-party web ...
-1
votes
1answer
376 views