Visual Studio edit label text shortcut - visual-studio-2010

Is there a shortcut in Visual Studio 2010 to jump into the Properties - Text field of the current selected item?
EDIT: Thank you Steve :)

It depends on your current keyboard layout, but if you press two times the key F4 with layout Visual C#2005 you get the editing inside the text property of the current label

Related

What is the keyboard shortcut to methods dropdown at the top of Visual Studio 2015?

What is the keyboard shortcut to methods dropdown at the top of Visual Studio 2015?
I found the answer thanks to #SergeyVlasov.
Thanks to Jeff's Keyboard Shortcut Summary Macro, I discovered that
Ctrl + F2 is mapped to a MovetoNavigationBar command, which pops me
into the "Class Name combobox." Add a tab and I'm in the Method Name
combobox.
Answer Link

where is visual studio 2013 find search textbox in toolbar

It is so painful for me to "Ctrl+F" keys to open search or find text box in Visual Studio 2013. So how to I put this text box back to tool bar and click on it when I need?
If you look closely you will see a small folder with magnified class icon in the tool bar attached is the image.
Click on the dropdown menu next to it to the right and select what you want to add permanently to your toolbar menu.

Visual Studio shortcut for "quick fix"

Does Visual Studio 2010 have a shortcut for quick fix?
I'm tired of grabbing the mouse, hovering over this red line, waiting for the little clipboard icon to appear, clicking on the first menu item. It would be so much fast to just open that dialog with some keys and confirming the first (i.e. selected) item.
The feature is called the "Smart Tag".
Default Keyboard Shortcut Schemes (ReSharper documentation)
Stack Overflow question How does one set Visual Studio 2010 keyboard shortcuts comfortably, especially when using ReSharper?
Stack Overflow question Visual Studio keyboard shortcut to automatically add the needed 'using' statement
They can usually be invoked via the keyboard using either:
Ctrl+. (on a standard QWERTY keyboard)
Alt+Shift+F10 (if you've not got Function Lock enabled)
If your cursor is on the item that is underlined, you can use Ctrl + . to pop up the intellisence/suggestion context menu.
Alt + Shift + F10 does the trick.
Via #Rohit from Visual Studio keyboard shortcut to automatically add the needed using statement
If you want to edit the shortcut of quick fix you can do the following:
Open Tools->Options->Keyboard and in the Show commands containing field enter EditorContextMenus.CodeWindow.QuickActionsForPosition and replace the old shortcut with the new one.

Split button in a tool window toolbar

i'm writing a visual studio 2010 extension and got a ToolWindow with a ToolWindowToolbar.
in my toolbar i want to add a split button that while pressing the button (left part) will show the 'open file' dialog, and when pressing the arrow (right part) will show a list of recently opened files.
i have tried several ways to no avail, can you help?
This thread from MSDN Visual Studio Extensibility Forum might help you.
"Bitmap icon does not appear on a SplitDropDown button in Visual Studio toolbar"
see solution in this discussion

Indentation - XAML

Does anybody know how to do an auto-indent a XAML file in Visual Studio 2010?
With the document open, press
CONTROL+K CONTROL+D
Menu - Edit:Advanced:Format Document (Your keyboard shortcut will be to the right of the menu item)
I find that if I just close the current object using the auto-complete functionality Visual Studio will indent everything in-between.
So you could just delete the last line of your XAML and then just start retyping the start of the line, hit tab and get your XAML indented.
Or you could just select Edit > Advanced > Format Document.

Resources