选择Wrap Panel&中的项目。项目样式wpf

时间:2016-05-24 21:39:51

标签: c# wpf

我已遵循此主题中的解决方案:Horizontal orientated WrapPanel within ItemsControl lists vertically

我有两个问题: 1)项目不可选择?我怎样才能做到这一点? 2)如何将样式资源添加到包装面板中的每个项目,使其包含在边框中?

1 个答案:

答案 0 :(得分:0)

链接的答案使用ItemsControl和WrapPanel。 ItemsControl不支持开箱即用,你应该使用ListBox,例如。

显示边框中的每个项目修改DataTemplates:

<DataTemplate>
  <Border BorderBrush="Green" BorderThickness="1">
    <!--other visuals here-->
  </Border>
</DataTemplate>