Skip to content

Instantly share code, notes, and snippets.

@adamped
Created January 9, 2016 08:53
Show Gist options
  • Save adamped/8ac798a8ceb73ec1c6a7 to your computer and use it in GitHub Desktop.
Save adamped/8ac798a8ceb73ec1c6a7 to your computer and use it in GitHub Desktop.
Example of style and usage in Xamarin Forms
<Application.Resources>
<ResourceDictionary>
<Style x:Key="BackgroundImageStyle" TargetType="Image">
<Setter Property="Aspect" Value="AspectFill" />
<Setter Property="Source" Value="Background.jpg" />
</Style>
</ResourceDictionary>
</Application.Resources>
<Image Style="{DynamicResource BackgroundImageStyle}" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment