PreviousNext

Creating XAML Code Snippets for Visual Studio 2013

by bill-s, 2013-07-13T09:28:37.000Z

Code Snippets in VS are basically XML files that sit in a special location (one of two locations, global or user).  These code snippets can apply to many things including languages (C#, VB, etc.) as well as ‘markup’ languages (CSS and now XAML).  You can read more in-depth data about VS Code Snippets here. The basics that I think you want to know are the two main types of snippets: Expansion and SurroundWith.

Read More