-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathruibc.snippet
29 lines (29 loc) · 1000 Bytes
/
ruibc.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 BindCommand</Title>
<Description>Inserts a RactiveUI BindCommand</Description>
<Shortcut>ruibc</Shortcut>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal Editable="true">
<ID>command</ID>
<ToolTip>Command on view model</ToolTip>
<Default>Command</Default>
</Literal>
<Literal Editable="true">
<ID>control</ID>
<ToolTip>Control in view</ToolTip>
<Default>Control</Default>
</Literal>
</Declarations>
<Code Language="csharp" Delimiter="$"><![CDATA[this.BindCommand(ViewModel, vm => vm.$command$, v => v.$control$).DisposeWith(d);$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>