您的位置:首页 > 移动开发 > Objective-C

英文版的Visual Studio.Net 2003 快捷键!

2004-07-21 15:17 375 查看
Visual Studio.Net 2003 Shortcut Keys<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
 
 
 
Shortcut Key
Description

Project Shortcut Key

Build.BuildSolutionCTRL + SHIFT + BBuilds the solution
Build.CompileCTRL + F7Creates an object file containing machine code, linker directives, sections, external references, and function/data names for the selected file.
File.OpenFileCTRL + ODisplays the Open File dialog box where you can select an existing file to open.
File.OpenProjectCTRL + SHIFT + ODisplays the Open Project dialog box where you can add existing projects to your solution.
 
 
 

Tool Window shortcut keys

View.ClassViewCTRL + SHIFT + CDisplays the Class View window.
View.PropertiesWindowF4Displays the Properties window, which lists the design-time properties and events for the currently selected item.
View.PropertyPagesSHIFT + F4Displays the property pages for the item currently selected.
View.ResourceViewCTRL + SHIFT + EDisplays the Resource View window.
 
 
 

Object Browser Shortcut keys

Edit.GoToDefinitionF12Displays the declaration for the selected symbol in code.
Edit.GoToDeclarationCTRL + F12Displays the definition of the selected symbol in the code.
View.ObjectBrowserCTRL + ALT + JDisplays the Object Browser to view the classes, properties, methods, events, and constants available for packages, and the object libraries and procedures in your project.
 
 
 

Integrated Help Shortcut Keys

Help.ContentsCTRL + ALT + F1Displays the Contents window for the documentation contained in MSDN.
Help.DynamicHelp
CTRL + F1
Displays the Dynamic Help window, which displays different topics depending on what items currently have focus in the product.
Help.F1HelpF1Displays a topic from Help that corresponds to the current user interface selected.
Help.WindowHelpSHIFT + F1Displays a topic from help that corresponds to the current user interface selected.
Help.SearchCTRL + ALT + F3Displays the Search window, which allows you to search for words or phrases in the documentation contained in MSDN.
 
 
 

Window management Shortcut Keys

View.FullScreenSHIFT + ALT + EN
18d1a
TER
Toggles Full Screen mode on and off.
View.NavigateBackwardCTRL + -Goes back to the previous document or window in the navigation history.
View.NavigateForwardCTRL + SHIFT + -Moves forward to the document or window next in the navigation history.
Window.CloseDocumentWindowCTRL + F4Closes the current MDI child window.
Window.NextTabCTRL + PAGE DOWNMoves to the next tab in the document or window.
Window.PreviousTabCTRL + PAGE UPMoves to the previous tab in the document or window.
Window.NextDocumentWindowCTRL + F6
CTRL + TAB
Cycles through the MDI child windows one window at a time.
Window.PreviousDocumentWindowCTRL + SHIFT + F6
CTRL + SHIFT + TAB
Moves to the previous document in the Editor or Designer.
Window.NextPaneALT + F6Moves to the next tool window.
 
 
 

Text Manipulation Shortcut Keys

Edit.ClearBookmarksCTRL + K, CTRL + LRemoves all unnamed bookmarks in the current document.
Edit.CommentSelectionCTRL + K, CTRL + CMarks the current line of code as a comment, using the correct comment syntax for the programming language.
Edit.UncommentSelectionCTRL + K, CTRL + URemoves the comment syntax from the current line of code.
Edit.ColllapseToDefinitionsCTRL + M, CTRL + OAutomatically determines logical boundaries for creating regions in code, such as procedures, and then hides them.
Edit.ToggleAllOutliningCTRL + M, CTRL + LToggles all previously marked hidden text sections between hidden and display states.
Edit.ToggleOutliningExpansionCTRL + M, CTRL + MToggles the currently selected hidden text section between the hidden and display state.
Edit.ToggleBookmarkCTRL + K, CTRL + KSets or removes a bookmark at the current line.
Edit.ToggleWordWrapCTRL +R, CTRL + REnables or disables word wrap in an editor.
Edit.WordDeleteToEndCTRL + DELETEDeletes the word to the right of the insertion point.
Edit.WordDeleteToStartCTRL + BACKSPACEDeletes the word to the left of the insertion point.
Edit.TabLeftSHIFT + TABMoves selected lines to the left one tab stop.
Edit.MakeLowercaseCTRL + UChanges the selected text to lowercase characters.
Edit.MakeUppercaseCTRL + SHIFT + UChanges the selected text to uppercase characters.
 
 
 

Text selection Shortcut Keys

Edit.DocumentEndExtendCTRL + SHIFT + ENDSelects the text from the insertion point to the last line of the document.
Edit.DocumentStartExtendCTRL + SHIFT + HOMESelects the text from the insertion point to the first line of the document.
Edit.LineEndExtendSHIFT + ENDSelects text from the insertion point to the end of the current line.
Edit.LineStartExtendSHIFT + HOMESelects text from the insertion point to the start of the line.
Edit.LineEndExtendColumnSHIFT + ALT + ENDMoves the insertion point to the end of the line, extending the column selection.
Edit.LineStartExtendColumnSHIFT + ALT + HOMEMoves the insertion point to the start of the line, extending the column selection.
Edit.SelectAllCTRL + ASelects everything in the current document.
Edit.SelectCurrentWordCTRL + WSelects the word containing the insertion point or the word to the right of the insertion point.
Edit.ViewTopExtendCTRL + SHIFT + PAGE UPExtends the selection to the top of the current window.
Edit.ViewBottomExtendCTRL + SHIFT + PAGE DOWNMoves the cursor to the last line in view, extending the selection.
 
 
 

Text navigation Shortcut Keys

Edit.DocumentEndCTRL + ENDMoves the insertion point to the last line of the document.
Edit.DocumentStartCTRL + HOMEMoves the insertion point to the first line of the document.
Edit.GoToCTRL + GDisplays the Go To Line dialog box.
Edit.PreviousBookmarkCTRL + K, CTRL + PMoves to the previous bookmark.
Edit.NextBookmarkCTRL + K, CTRL + NMoves to the next bookmark in the document.
View.BrowseNextCTRL + SHIFT + 1Navigates to the next definition, declaration, or reference of an item. Available in the Object Browser and Class View window.
 
 
 
Debugging Shortcut Keys
 
Debug.ApplyCodeChanges
ALT + F10Starts an Edit and Continue build to apply changes to code being debugged.
Debug.BreakAllCTRL + ALT+ BreakTemporarily stops execution of all processes in a debugging session. Available only in Run mode.
Debug.ClearAllBreakpointsCTRL + SHIFT + F9  
Clears all of the breakpoints in the project.
Debug.EnableBreakpointCTRL + F9Sets a breakpoint at the current line of code.
Debug.RestartCTRL + SHIFT + F5Terminates a debugging session, rebuilds, and then starts running the application from the beginning. Available in Break and Run modes.
Debug.StartF5Automatically attaches the debugger and runs the application from the startup project specified in the <Project> Properties dialog box. Changes to Continue if in Break mode.
Debug.StartWithoutDebuggingCTRL + F5Runs the code without invoking the debugger.
Debug.StepOverF10Executes the next line of code, but does not follow execution through any function calls.
Debug.StepIntoF11Executes code one statement at a time, following execution into function calls.
 
 
 

HTML Designer Shortcut Keys

Edit.ListMembersCTRL + JLists members of the current class for statement completion when editing code. Available only in HTML view of the HTMLDesigner.
Edit.ViewBottomCTRL + PAGE DOWNMoves to the bottom of the current document. Available only in HTML View of the HTML Designer.
View.NextViewCTRL + PAGE DOWNSwitches from Design view to HTML view and vice versa. Available only in Design view of the HTML Designer.
Format.BoldCTRL + BToggles the selected text between bold and normal. Available only in Design view of the HTML Designer.
Format.DecreaseIndent
CTRL + SHIFT + TDecreases the selected paragraph by one indent unit. Available only in Design view of the HTML Designer.
 
 
 
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息