1

我的 WPF 中有一个 UniformGrid

<UniformGrid Height="144" HorizontalAlignment="Left" Margin="0,136,0,0" VerticalAlignment="Top" Width="213" MaxHeight="144" MaxWidth="213" MinHeight="144" MinWidth="213" x:Name="PATH_DataGrid" Columns="7" Rows="6">
</UniformGrid>

我将在 C# cod 上添加一些 autogeneretet 按钮

Button b = new Button();
            b.Content = "22";
            b.Width = 100;
            b.Height = 100;

我可以将按钮添加到 UniformGrid 吗?

        PATH_DataGrid`???

THX 为您提供帮助

4

1 回答 1

3
PATH_DataGrid.Children.Add(b)

这会将按钮添加到面板中。

于 2012-05-24T07:53:14.893 回答