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有一个Children属性,它是一个UIElementCollection对象。如果您在运行时添加内容,我假设您已经Add在该集合上调用该方法。您可以调用RemoveAt该集合以删除特定的集合,然后Insert将新对象放入同一索引中。
StackPanel
Children
UIElementCollection
Add
RemoveAt
Insert