让WrapPanel从下到上添加项目

时间:2011-11-01 19:14:21

标签: wpf wpf-controls

如何让WrapPanel从下到上添加项目?

我是否需要为此或任何简单的方法编写自定义控件?

1 个答案:

答案 0 :(得分:0)

在后面的代码中,您可以在Children属性上使用Insert()方法。

WrapPanel myPanel = new WrapPanel();
myPanel.Children.Insert(0, new Button());

如果不在代码中,则必须创建一个新控件。