Created
January 9, 2016 08:53
-
-
Save adamped/8ac798a8ceb73ec1c6a7 to your computer and use it in GitHub Desktop.
Example of style and usage in Xamarin Forms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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