让 WrapPanel 从下到上添加项目

发布于 2024-12-13 09:54:40 字数 83 浏览 0 评论 0原文

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

我是否需要为此编写一个自定义控件或任何简单的方法来实现此目的?

How can I make WrapPanel add items from bottom to top?

Do I need to write a custom control for that or any easy way of accomplishing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我家小可爱 2024-12-20 09:54:40

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

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

如果不在代码后面,您将必须创建一个新控件。

In code behind you can just use the Insert() method on the Children property.

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

If not in code behind, you'll have to create a new control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文