Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图颠倒孩子们出现在 StackPanel 中的顺序。我希望能够将新的孩子(在运行应用程序时)添加到列表的顶部而不是底部。我尝试过使用各种 XAML 代码,但没有任何效果。
最简单的方法是什么?
利用:
stackPanel.Children.Insert(0, uiElement);
这将在列表的头部插入元素。
资源