wpf groupbox无法动态添加子控件

2024-11-19 08:08:20
推荐回答(2个)
回答1:

            Button b = new Button();
            b.Content = "按钮1";
            b.Height = 50;
            b.Width = 80;
            groupBox1.Content = b;

如果需要添加多个,需要用到布局控件了stackpal等

回答2:

无凭无据。