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="40,30,20,10" /> | |
</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="100" /> | |
<!-- Purple Panel --> | |
<Panel Color="#7A49A7" 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
<!-- Red Panel --> | |
<StackPanel Color="#DB6882" Width="300" Height="300" Padding="20"> | |
<!-- Yellow Panel --> | |
<Panel Color="#F1D751" Height="100" /> | |
<!-- Purple Panel --> | |
<Panel Color="#7A49A7" Height="100" Alignment="Bottom" /> | |
</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" Padding="20"> | |
<!-- Text with Yellow BG --> | |
<Text Value="Hey there" Color="Black" Background="#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 --> | |
<Panel Color="#DB6882" Width="300" Height="300" Padding="20"> | |
<!-- Text with Yellow BG --> | |
<Text Value="Hey there" Color="Black" Background="#F1D751" | |
Alignment="TopCenter" /> | |
</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
<Rectangle Color="#46E3D6" Width="200" Height="100"/> |
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 Width="200" Height="100"> | |
<SolidColor Color="#46E3D6" /> | |
<Stroke Color="#6DBFD2" Width="2" /> | |
<Shadow Color="#0003" Distance="1" /> | |
</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
<Image File=“Assets/AssetType/Asset.jpeg”/> |
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
<Image StretchMode=”PointPrefer”> | |
<MultiDensityImageSource> | |
<FileImageSource File=”Icon.png” Density=”1"/> | |
<FileImageSource File=”[email protected]” Density=”2"/> | |
<FileImageSource File=”[email protected]” Density=“3”/> | |
</MultiDensityImageSource> | |
</Image> |
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
<Font File=”Assets/Fonts/Comic Sans MS.ttf” /> |