Visual C# 2005 Default Shortcut Keys
This is one of the articles I wanted to write long back. May be it is not too late. These shortcut keys helps us to make our life easy..
Visit https://msdn2.microsoft.com/en-us/library/ms366739(VS.80).aspx
Global Shortcut Keys, Visual C# 2005 Scheme
HTML Designer Shortcut Keys, Visual C# 2005 Scheme
XML Designer Shortcut Keys, Visual C# 2005 Scheme
Control Manipulation Shortcut Keys, Visual C# 2005 Scheme
Debugging Shortcut Keys, Visual C# 2005 Scheme
Search and Replace Shortcut Keys, Visual C# 2005 Scheme
Data Shortcut Keys, Visual C# 2005 Scheme
Text Navigation Shortcut Keys, Visual C# 2005 Scheme
Text Selection Shortcut Keys, Visual C# 2005 Scheme
Text Manipulation Shortcut Keys, Visual C# 2005 Scheme
Window Management Shortcut Keys, Visual C# 2005 Scheme
Integrated Help Shortcut Keys, Visual C# 2005 Scheme
Object Browser Shortcut Keys, Visual C# 2005 Scheme
Macro Shortcut Keys, Visual C# 2005 Scheme
Tool Window Shortcut Keys, Visual C# 2005 Scheme
Project Shortcut Keys, Visual C# 2005 Scheme
Image Editor Shortcut Keys, Visual C# 2005 Scheme
Dialog Editor Shortcut Keys, Visual C# 2005 Scheme
Refactoring Shortcut Keys, Visual C# 2005 Scheme
Managed Resources Editor Shortcut Keys, Visual C# 2005 Scheme
Code Snippet Shortcut Keys, Visual C# 2005 Scheme
Class Diagram Shortcut Keys, Visual C# 2005 Scheme
Bookmark Window Shortcut Keys, Visual C# 2005 Scheme
Accelerator and String Editor Shortcut Keys, Visual C# 2005 Scheme
Namoskar!!!
Comments
Anonymous
June 15, 2007
PingBack from http://msdnrss.thecoderblogs.com/2007/06/16/Anonymous
October 11, 2009
please help me with short cut keys in c#.net i waan assign shortcut keys to controls on c#.net form its urgent!! thanks in advance!!Anonymous
October 13, 2009
If you are working for Windows Forms you may assign Alt+ keys to your controls like Button by specifying "&" in the Caption. Like if you have a button with a caption "Submit" and you want to assign key Alt+S please mention in caption/text property of your control as "&Submit". Now your S will have "_"(underscore) which means it has Alt+S as shortcut. Else you have to write code in form's KeyPress event.