我正在处理一个项目,其中在页面中我有一个 ListBox 并且每个 ListBoxItem 都是一个 ExpanderView 控件...一切正常,但是我在将 ExpanderView 标题设置为最大宽度时遇到问题(100%可用空间)。我已经设置
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
</Style>
</ListBox.ItemContainerStyle>
在我的 ListBoxItem 上,但没有任何成功......
ExpanderView 标题模板使用具有 1 行和 2 列的网格视图(第一个应该有 * 宽度,第二个应该有 100)......到目前为止,第一列根据内容宽度扩展,并且在需要时不会拉伸。
知道如何实现吗?
先感谢您!
安德烈