Just switched to visual studio 2012, and I can\'t figure out how to insert a new row into a silverlight grid through the xaml designer.
In visual studio 2010, we cou
What grid is that?, I know:
<Grid x:Name="LayoutRoot" Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="68*" />
<RowDefinition Height="96*" />
<RowDefinition Height="136*" />
</Grid.RowDefinitions>
</Grid>
With this grid I don't insert rows by left clicking in neither VS
found the answer here :
http://social.msdn.microsoft.com/Forums/en-US/silverlightdevtools/thread/0dc73921-c1bd-465e-b584-c14d7863fa73
"I found the insert row/column. The new UI style in 2012 makes it harder to see drop downs. If you hover over the left or top edge of the grid, a tiny dropdown arrow will popup with the options moved to there instead of right clicking as cell as it was in 2010.
Also you can now move stuff around from Document outline so I only really need behavior support in 2012 so I can ditch Blend."