Visual studio 2012 - silverlight - XAML designer - Insert grid row before/ after

前端 未结 2 1724
被撕碎了的回忆
被撕碎了的回忆 2021-01-19 23:38

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

相关标签:
2条回答
  • 2021-01-20 00:19

    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

    0 讨论(0)
  • 2021-01-20 00:33

    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."

    0 讨论(0)
提交回复
热议问题