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
| <StackPanel Orientation="Horizontal" Alignment="Center" ItemSpacing="10"> | |
| <Circle ux:Name="circleName" Height="60" Width="60" Color="#F1D751"/> | |
| <Circle Height="60" Width="60" Color="#6DBFD2" > | |
| <WhilePressed> | |
| <Move Target="circleName" Y="-1" RelativeTo="Size" Easing="BounceInOut" Duration="0.2"/> | |
| </WhilePressed> | |
| </Circle> | |
| </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
| <StackPanel Orientation="Horizontal" Alignment="Center" ItemSpacing="10"> | |
| <Circle Height="60" Width="60" Color="#F1D751" ux:Name="circleName" /> | |
| <Circle Height="60" Width="60" Color="#6DBFD2" > | |
| <WhilePressed> | |
| <Move Target="circleName" Y="-1" RelativeTo="Size" Delay="0.2" Easing="Linear" Duration="0.2" DurationBack="0.4" EasingBack="ElasticIn" DelayBack="0.4"/> | |
| </WhilePressed> | |
| </Circle> | |
| </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
| <StackPanel Orientation="Horizontal" Alignment="Center" ItemSpacing="10"> | |
| <Circle Height="60" Width="60" Color="#F1D751" ux:Name="circleName" /> | |
| <Circle Height="60" Width="60" Color="#6DBFD2" > | |
| <WhilePressed> | |
| <Change Target="circleName.Color" Value="#6DBFD2" Duration="0.4"/> | |
| </WhilePressed> | |
| </Circle> | |
| </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
| <PageControl> | |
| <Page Background="#6DBFD2" /> | |
| <Page Background="#F1D751" /> | |
| <Page Background="#DB6882" /> | |
| </PageControl> |
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
| <PageControl> | |
| <Page Background="#6DBFD2" ux:Name="bluePage" > | |
| <Text Value="Click Me!" Alignment="Center" TextColor="White"> | |
| <Clicked> | |
| <NavigateTo Target="redPage" /> | |
| </Clicked> | |
| </Text> | |
| </Page> | |
| <Page Background="#F1D751" ux:Name="yellowPage" /> | |
| <Page Background="#DB6882" ux:Name="redPage" /> |
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
| <StackPanel Padding="20" ItemSpacing="40"> | |
| <StackPanel ItemSpacing="20"> | |
| <Text FontSize="24" TextColor="#0006" Value="This is a short | |
| Headline." /> | |
| <Text FontSize="16" TextColor="#0004" Value="This is a sub- | |
| heading. It can be much longer and wrap over two lines | |
| sometimes." TextWrapping="Wrap" /> | |
| </StackPanel> | |
| <StackPanel ItemSpacing="20"> | |
| <Text FontSize="24" TextColor="#0006" Value="This is a short |
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
| <StackPanel ux:Class="MyFirstClass" ItemSpacing="20" > | |
| <Text FontSize="24" TextColor="#0006" Value="This is a short | |
| Headline." /> | |
| <Text FontSize="16" TextColor="#0004" Value="This is a sub- | |
| heading. It can be much longer and wrap over two lines | |
| sometimes." TextWrapping="Wrap" /> | |
| </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
| <MyFirstClass/> |
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
| <StackPanel Padding="20" ItemSpacing="40" > | |
| <StackPanel ItemSpacing="20" ux:Class="MyFirstClass"> | |
| <Text FontSize="24" TextColor="#0006" Value="This is a short | |
| Headline." /> | |
| <Text FontSize="16" TextColor="#0004" Value="This is a sub- | |
| heading. It can be much longer and wrap over two lines | |
| sometimes." TextWrapping="Wrap" /> | |
| </StackPanel> | |
| <MyFirstClass/> | |
| <MyFirstClass/> |
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
| <string ux:Property="HeadlineText"/> |