gpt4 book ai didi

xaml - 在代码中创建 RowDefinitions 和 ColumnDefinitions

转载 作者:行者123 更新时间:2023-11-30 23:48:13 25 4
gpt4 key购买 nike

我正在为 windows-phone 开发应用程序,我想创建 2 行 2 列的表我为此表创建了 xaml 代码

<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。

最佳答案

Grid newGrid = new Grid();
newGrid.Background = new SolidColorBrush(Colors.White);
newGrid.ColumnDefinitions.Add(new ColumnDefinition());
newGrid.ColumnDefinitions.Add(new ColumnDefinition());
newGrid.RowDefinitions.Add(new RowDefinition());
newGrid.RowDefinitions.Add(new RowDefinition());

在特定单元格中定位元素:

Grid chat_userpicgrid = new Grid();
Grid.SetColumn(chat_userpicgrid, 1);
Grid.SetRow(chat_userpicgrid, 1);
newGrid.Children.Add(chat_userpicgrid);

看看the code at the bottom of this MSDN page

关于xaml - 在代码中创建 RowDefinitions 和 ColumnDefinitions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12108405/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com