Skip to content

Instantly share code, notes, and snippets.

@Beelzenef
Created October 2, 2019 14:41
Show Gist options
  • Save Beelzenef/51d6995db1ee5a4066e39a798d2af645 to your computer and use it in GitHub Desktop.
Save Beelzenef/51d6995db1ee5a4066e39a798d2af645 to your computer and use it in GitHub Desktop.
<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