-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathruib.snippet
29 lines (29 loc) · 1017 Bytes
/
ruib.snippet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>ReactiveUI Bind</Title>
<Description>Inserts a RactiveUI Bind</Description>
<Shortcut>ruib</Shortcut>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal Editable="true">
<ID>vmProperty</ID>
<ToolTip>Property on view model</ToolTip>
<Default>Property</Default>
</Literal>
<Literal Editable="true">
<ID>viewProperty</ID>
<ToolTip>Property on control in view</ToolTip>
<Default>Control.Property</Default>
</Literal>
</Declarations>
<Code Language="csharp" Delimiter="$"><![CDATA[this.Bind(ViewModel, vm => vm.$vmProperty$, v => v.$viewProperty$).DisposeWith(d);$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>