3
我開發的應用程序的Windows手機, 我想創建一個表2行的2列 創建XAML代碼此表創建RowDefinitions和ColumnDefinitions
<Grid Background="White">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions/>
</Grid>
我要創建這個網格代碼
Grid chat_userpicgrid = new Grid();
newgrid.Children.Add(chat_userpicgrid);
但我不知道如何創建RowDefinitions和ColumnDefinitions。