Last active
August 29, 2015 14:07
-
-
Save vnavarro/efb819dae3e6b287ba93 to your computer and use it in GitHub Desktop.
Visual Studio Snippets for Property with NotifyOfPropertyChange
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<CodeSnippets | |
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>Notified Property C# - WinPhone</Title> | |
<Author>Vitor Navarro</Author> | |
<Description>Full Property shortcut with NotifyOfPropertyChange for WinPhone using C#</Description> | |
<Shortcut>propfullnotify</Shortcut> | |
</Header> | |
<Snippet> | |
<Declarations> | |
<Literal> | |
<ID>varType</ID> | |
<ToolTip>Replace with your property type.</ToolTip> | |
<Default>int</Default> | |
</Literal> | |
<Literal> | |
<ID>myVar</ID> | |
<ToolTip>Replace with your attribute name.</ToolTip> | |
<Default>myVar</Default> | |
</Literal> | |
<Literal> | |
<ID>MyProperty</ID> | |
<ToolTip>Replace with your property name.</ToolTip> | |
<Default>MyProperty</Default> | |
</Literal> | |
</Declarations> | |
<Code Language="CSharp"> | |
<![CDATA[private $varType$ $myVar$; | |
public $varType$ $MyProperty$ | |
{ | |
get { return $myVar$; } | |
set | |
{ | |
$myVar$ = value; | |
NotifyOfPropertyChange(() => $MyProperty$); | |
} | |
} | |
]]> | |
</Code> | |
</Snippet> | |
</CodeSnippet> | |
</CodeSnippets> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment