我的 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 为您提供帮助