Created
October 11, 2013 06:30
-
-
Save einari/6930426 to your computer and use it in GitHub Desktop.
HTML Control Syntax
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
<!-- | |
Basically, the idea is to provide a syntax for doing client side rendering. | |
Based on my experience with Silverlight - I did have in mind that it looks quite a lot like it. | |
--> | |
<Grid> | |
<Grid.ColumnDefinitions> | |
<ColumnDefinition Width="50px"/> | |
<ColumnDefinition Width="{Binding Property}"/> | |
</Grid.ColumnDefinitions> | |
<Grid.RowDefinitions> | |
</Grid.RowDefinitions> | |
</Grid> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment