Xamarin.Forms: Bindable Property snippet for Visual Studio
by
banditoth
February 25, 2021
Xamarin
0
This content has 4 years. Some of the information in this post may be out of date or no longer work. Please, read this page keeping its age in your mind.
Use bprop tab tab to generate commands in ViewModels with this snippet
Save the snippet file as {name}.snippet in Visual Studio’s folder: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC#\Snippets\1033\Visual C#
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Bindable Property</Title>
<Shortcut>bprop</Shortcut>
<Description>Xamarin BindableProperty declaration code snippet</Description>
<Author>banditoth.hu</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>PropertyName</ID>
<ToolTip>The property's name</ToolTip>
<Default>Foo</Default>
</Literal>
<Literal>
<ID>Type</ID>
<ToolTip>The type of the property</ToolTip>
<Default>object</Default>
</Literal>
<Literal>
<ID>DefaultValue</ID>
<ToolTip>The default value of the property</ToolTip>
<Default>null</Default>
</Literal>
<Literal>
<ID>BindingMode</ID>
<ToolTip>The binding mode of the property</ToolTip>
<Default>TwoWay</Default>
</Literal>
<Literal>
<ID>PropertyChangedHandler</ID>
<ToolTip>The property changed handler method</ToolTip>
<Default>null</Default>
</Literal>
<Literal>
<ID>PropertyChangingHandler</ID>
<ToolTip>The property changing handler method</ToolTip>
<Default>null</Default>
</Literal>
</Declarations>
<Code Language="csharp">
<![CDATA[
public static readonly BindableProperty $PropertyName$Property = BindableProperty.Create(
propertyName: nameof($PropertyName$),
returnType: typeof($Type$),
declaringType: typeof(View),
defaultValue: $DefaultValue$,
defaultBindingMode: BindingMode.$BindingMode$,
propertyChanged: $PropertyChangedHandler$,
propertyChanging: $PropertyChangingHandler$);
public $Type$ $PropertyName$
{
get { return ($Type$)GetValue($PropertyName$Property); }
set { SetValue($PropertyName$Property, value); }
}
$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Tags In
Share
Leave a Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Hi, I am András,
I am a seasoned software engineer from Budapest, Hungary with a strong focus on mobile app development using .NET MAUI and Xamarin.Forms. My expertise also extends to website building for my happy customers and other complex system designing. I am passionate about developing well-organized, maintainable software solutions.
#tagged
.net core (8)
.NET MAUI (27)
android (21)
Appstore (3)
azure (4)
azure devops (6)
bug (3)
ci (3)
dark mode (3)
devops (5)
docker (2)
entry (6)
error (13)
forms (4)
ios (15)
json (3)
listview (3)
macos (8)
maui (32)
maui error (4)
maui ios (4)
maui packages (4)
mvvm (3)
nuget (4)
osx (3)
osx visual studio (3)
pipelines (4)
Publish (4)
publish error (3)
recurrencetoolkit (4)
snippet (2)
sourcetree (3)
uwp (5)
versioning (2)
visual studio (10)
visual studio mac (3)
vscode (3)
vs mac (4)
windows (4)
xamarin (50)
xamarin android (17)
xamarin error (11)
xamarin forms (34)
xamarin ios (6)
xaml (3)