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 ItemSpacing="20" ux:Class="MyFirstClass"> | |
| <string ux:Property="HeadlineText"/> | |
| <Text FontSize="24" TextColor="#0006" Value="{Property | |
| HeadlineText}" /> | |
| <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
| <Text FontSize="24" TextColor="#0006" Value="{Property HeadlineText}" /> |
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 HeadlineText="Woah, they can be different everytime? "/> | |
| <MyFirstClass HeadlineText="Hey, this is neat"/> |
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
| Fruits: [ | |
| { type: "Apple" }, | |
| { type: "Orange" }, | |
| { type: "Pear" }, | |
| { type: "Banana" }, | |
| { type: "Plum"} | |
| ] |
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
| Fruits: [ | |
| { | |
| type: "Apple", | |
| subtypes: [ | |
| "GrannySmith", | |
| "Crab", | |
| "Red", | |
| "Toffee" | |
| ] | |
| }, |
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
| <JavaScript> | |
| module.exports = { | |
| }; | |
| </JavaScript> |
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
| <JavaScript > | |
| module.exports = { | |
| Fruits: [ | |
| { type: "Apple" }, | |
| { type: "Orange" }, | |
| { type: "Pear" }, | |
| { type: "Banana" }, | |
| { type: "Plum"} | |
| ] | |
| } |
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
| <Grid Alignment="Center" CellSpacing="10"> | |
| <Each Items="{Fruits}"> | |
| <Text Value="{type}"/> | |
| </Each> | |
| </Grid> |
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
| <JavaScript > | |
| module.exports = { | |
| Fruits: [ | |
| { type: "Apple" }, | |
| { type: "Orange" }, | |
| { type: "Pear" }, | |
| { type: "Banana" }, | |
| { type: "Plum"} | |
| ] | |
| } |
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
| <Grid Alignment="Center" CellSpacing="10" > | |
| <Each Items="{Fruits}"> | |
| <Text Value="{type}" /> | |
| </Each> | |
| </Grid> |