Skip to content

Instantly share code, notes, and snippets.

@einari
Created October 11, 2013 06:30
Show Gist options
  • Save einari/6930426 to your computer and use it in GitHub Desktop.
Save einari/6930426 to your computer and use it in GitHub Desktop.
HTML Control Syntax
<!--
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