Social Icons

miércoles, 5 de septiembre de 2012

Snippet para DependencyProperty con método Call-Back y valor por defecto

Para mi esta es la manera en la que Microsoft debería haber hecho el snippet de DependencyProperty desde el principio.
Uso este un montón y tiene definidos lugares para el valor por defecto, el método call-back e incluso asigna la instancia de la clase que llama al call-back a una variable automaticamente.
  1. <CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">  
  2.  <CodeSnippet Format="1.0.0">  
  3.   <Header>  
  4.    <Title>Dependency Property With CallBack</Title>  
  5.    <Shortcut>propdpCallBack</Shortcut>  
  6.    <Description>Creates a dependency property with it's callback method</Description>  
  7.    <Author>Jose Sanchez</Author>  
  8.    <SnippetTypes>  
  9.     <SnippetType>Expansion</SnippetType>  
  10.     <SnippetType>SurroundsWith</SnippetType>  
  11.    </SnippetTypes>  
  12.   </Header>  
  13.   <Snippet>  
  14.    <Declarations>  
  15.     <Literal>  
  16.      <ID>PublicName</ID>  
  17.      <Default>PropertyName</Default>  
  18.      <ToolTip>Public name of the depencency property</ToolTip>  
  19.     </Literal>  
  20.     <Literal>  
  21.      <ID>type</ID>  
  22.      <Default>string</Default>  
  23.      <ToolTip>Type of the property</ToolTip>  
  24.     </Literal>  
  25.     <Literal>  
  26.      <ID>ParentClassType</ID>  
  27.      <Default>UserControl</Default>  
  28.      <ToolTip>Type of the parent class of the dependency property</ToolTip>  
  29.     </Literal>  
  30.     <Literal>  
  31.      <ID>DefaultValue</ID>  
  32.      <Default>string.Empty</Default>  
  33.      <ToolTip>Default value of the dependency property</ToolTip>  
  34.     </Literal>  
  35.     <Literal>  
  36.      <ID>CallBackName</ID>  
  37.      <Default>PropertyCallBackName</Default>  
  38.      <ToolTip>Name of the callback method that will be triggered when the depencency property has changed</ToolTip>  
  39.     </Literal>  
  40.    </Declarations>  
  41.    <Code Language="csharp"><![CDATA[public $type$ $PublicName$ 
  42.         { 
  43.             get { return ($type$)GetValue($PublicName$Property); } 
  44.             set { SetValue($PublicName$Property, value); } 
  45.         } 
  46.  
  47.         // Using a DependencyProperty as the backing store for $PublicName$.  This enables animation, styling, binding, etc... 
  48.         public static readonly DependencyProperty $PublicName$Property = 
  49.             DependencyProperty.Register("$PublicName$", typeof($type$), typeof($ParentClassType$), new PropertyMetadata($DefaultValue$, new PropertyChangedCallback($CallBackName$))); 
  50.  
  51.  
  52.  private static void $CallBackName$(DependencyObject obj, DependencyPropertyChangedEventArgs e) 
  53.         { 
  54.             $ParentClassType$ Changed$ParentClassType$ = (obj as $ParentClassType$); 
  55.  
  56.             //TODO: Implement some actions in Changed$ParentClassType$ 
  57.         }]]>  
  58.    </Code>  
  59.   </Snippet>  
  60.  </CodeSnippet>  
  61. </CodeSnippets>  
Espero que os sea tan útil como a mi.

Por cierto, podéis encontrar más información sobre cómo crear e importar snippets aquí.

No hay comentarios: