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
<App> | |
<Rectangle Height="60" Width="80%" Color="#50E3C2" CornerRadius="4"/> | |
</App> |
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
<App> | |
<Rectangle Height="60" Width="80%" Color="#50E3C2" CornerRadius="4"> | |
<Text TextColor="#fff" FontSize="16" Alignment="Center"> Click Me! </Text> | |
</Rectangle> | |
</App> |
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
<App> | |
<Rectangle Height="60" Width="80%" Color="#50E3C2" CornerRadius="4"> | |
<Text TextColor="#fff" FontSize="16" Alignment="Center"> Click Me! </Text> | |
<DropShadow Color="#00000060" Distance="1" Angle="90" Size="1" Spread="0.2"/> | |
</Rectangle> | |
</App> |
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
<App> | |
<Rectangle Height="60" Width="80%" Color="#50E3C2" CornerRadius="4" ux:Name="BlueRectangle"> | |
<Text TextColor="#fff" FontSize="16" Value="Click Me!" Alignment="Center" ux:Name="ButtonText"/> | |
<DropShadow Color="#00000060" Distance="1" Angle="90" Size="1" Spread="0.2"/> | |
<WhilePressed> | |
<Scale Target="BlueRectangle" Factor="0.95" Duration="0.4" Easing="QuadraticOut"/> | |
</WhilePressed> | |
<Clicked> | |
<Set Target="ButtonText.Value" Value="You clicked me!" /> | |
</Clicked> |
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
<App> | |
<Rectangle Height="60" Width="80%" Color="#50E3C2" CornerRadius="4"> | |
<Text TextColor="#fff" FontSize="16" Alignment="Center"> Click Me! </Text> | |
</Rectangle> | |
</App> |
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
<!-- Red StackPanel --> | |
<StackPanel Color="#DB6882" Width="300" Height="300" Padding="20"> | |
<!-- Yellow Panel --> | |
<Panel Color="Yellow" Height="100" /> | |
<!-- Blue Panel --> | |
<Panel Color="Blue" Height="100"/> | |
</StackPanel> |
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
<Rectangle Color=“Red”> | |
<Text Value=“Hey, I am some text” Color=“White” Alignment=“Center”/>` | |
</Rectangle> |
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
<!-- Red Panel --> | |
<Panel Color="#DB6882" Width="200" Padding="20" Height="300"> | |
<!-- Yellow Panel --> | |
<Panel Color="#F1D751" /> | |
</Panel> |
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
<!-- Red Panel --> | |
<StackPanel Color="#DB6882" Width="300" Height="300" Padding="20"> | |
<!-- Yellow Panel --> | |
<Panel Color="#F1D751" Height="40" /> | |
<!-- Light Blue Panel --> | |
<Panel Color="#6DBFD2" Height="60" /> | |
<!-- Purple Panel --> | |
<Panel Color="#7A49A7" Height="80" /> | |
</StackPanel> |
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
<!-- Red Panel --> | |
<Panel Color="#DB6882" Width="300" Height="300"> | |
<!-- Yellow Panel --> | |
<Panel Color="#F1D751" Margin="20" Padding="40"> | |
<!-- Light Blue Panel --> | |
<Panel Color="#6DBFD2" /> | |
</Panel> | |
</Panel> |
OlderNewer