我正在使用Listview ItemsPanel属性中的换行网格,并在其中创建了WrapGrid。现在的问题是我们可以绑定WrapGrid的ItemHeight属性,因为我做不到。我已经像这样定义了我的 WrapGrid。以及其他组合。
<ListView.ItemsPanel >
<ItemsPanelTemplate >
<WrapGrid Orientation="Vertical" Margin="0,0,0,10" ItemHeight="{Binding Path=ItemHeight,RelativeSource={RelativeSource Mode=Self}}" />
</ItemsPanelTemplate>
</ListView.ItemsPanel>
我能够正确绑定 Listview 的DataTemplate字段。我在定义所有属性的 CollectionOFItems 中创建了ItemHeight属性。所以我的问题是我们可以绑定 ItemHeight 属性,如果可以,请帮助我怎么做。