Hi,
I was just creating a Grid in my XAML when i noticed that Visual Studio automatically creates ColumnDefinitions like this:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
</Grid>
I always stop this from happening by using the shorthand but then wondered would there be any purpose for using the long hand equivalent; can you put anything in between these tags?
Thanks, Kohan.