标签: wpf wpf-controls
如何让WrapPanel从下到上添加项目?
WrapPanel
我是否需要为此或任何简单的方法编写自定义控件?
答案 0 :(得分:0)
在后面的代码中,您可以在Children属性上使用Insert()方法。
WrapPanel myPanel = new WrapPanel(); myPanel.Children.Insert(0, new Button());
如果不在代码中,则必须创建一个新控件。