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.
我从 WPF 开始,我有一个网格 [3-3](矩阵)。我想定义将用户控件放入该网格的顺序。
那么,我可以使用 Xaml 数据绑定来实现吗?或者我必须创建一个“AddControls”方法并手动指定订单?
这是我想在我的网格中建立的顺序示例:
使用ItemsControlaUniformGrid和 as ItemsPanel。
ItemsControl
UniformGrid
ItemsPanel
如果默认顺序不正确,您可以尝试将面板子类化或绑定到集合并插入到正确的位置。当然您也可以直接在 XAML 中设置项目,其中元素顺序指定了添加项目的顺序。