Created
October 2, 2019 14:41
-
-
Save Beelzenef/51d6995db1ee5a4066e39a798d2af645 to your computer and use it in GitHub Desktop.
This file contains 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
<StackPanel Padding="10" | |
Spacing="10"> | |
<TextBlock Text="Windows" /> | |
<StackPanel Orientation="Horizontal" Spacing="10" Padding="10"> | |
<Button Content="Button" /> | |
<Button Content="Button" IsEnabled="False" /> | |
</StackPanel> | |
<TextBlock Text="iOS" /> | |
<StackPanel Orientation="Horizontal" Spacing="10" Padding="10"> | |
<Button Content="Button" | |
Style="{StaticResource iOSButtonStyle}" /> | |
<Button Content="Button" | |
Style="{StaticResource iOSButtonStyle}" | |
IsEnabled="False" /> | |
</StackPanel> | |
<TextBlock Text="Android" /> | |
<StackPanel Orientation="Horizontal" Spacing="10" Padding="10"> | |
<Button Content="BUTTON" | |
Style="{StaticResource AndroidButtonStyle}" /> | |
<Button Content="BUTTON" | |
Style="{StaticResource AndroidButtonStyle}" | |
IsEnabled="False" /> | |
</StackPanel> | |
</StackPanel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment