Visual Studio Tipps

Keyboard ShortCuts

  • Ctrl-Space: Show Intellisense List
  • Ctrl-K, C: Comment Selection
  • Ctrl-K, U: Uncomment Selection
  • Ctrl-Shift-B: Build Solution
  • Ctrl-. (period): Show „Add Using/Imports“ dropdown for unknown types.
  • Ctrl-K, F: Format Section
  • Ctrl-K, D: Format Document
  • Ctrl-Shift-V: Paste Loop – Hit Multiple Times to paste through the list of recent ‚copies‘
  • Ctrl-F: Simple Find
  • Ctrl-Shift-F: Find in Files
  • Ctrl-H: Simple Replace
  • F9: Set Breakpoint
  • Ctrl-Shift-R: Start/End Temporary Macro Recording
  • Ctrl-Shift-P: Play Temporary Macro Recording
  • F12; Navigate to Type (or metadata for Type) under the cursor
  • Ctrl-E, D: XAML Code automatisch formatieren

Weitere XAML-Tipps hier.

Snippets

(To use these snippets, type the phrase and hit Tab twice)

  • ctor: Erstellt einen Konstruktor für die enthaltende Klasse
  • else: Erstellt einen else-Block
  • enum: Erstellt eine enum-Deklaration
  • prop: Einfaches Property
  • propfull: Erstellt ein Property mit komplettem get-Accessor und set-Accessor
  • propdp: Dependency Property
  • foreach: Kompletter Foreach-Block

Alle weitere Code Snippets hier.

Das könnte dich auch interessieren …