3
我有一個數據綁定ListBox與DataTemplate設置。 DataTemplate包含一個Grid控件,其中兩列寬度爲Auto和*。我希望此列始終填充ListBoxItem,並且永遠不會超出LisBox控件以使水平滾動條可見。WPF列表框寬度/最大寬度
我能夠在MaxWidth綁定到DataTemplate中的網格使用:
MaxWidth="{Binding RelativeSource={RelativeSource AncestorType={x:Type ListBox}}, Path=ActualWidth}"
這是實現這一目標的最佳方式是什麼?
我也有ItemContainerStyle設置以下。觸發器已被刪除,使代碼更小,更易於閱讀。
<Style x:Key="ListBoxItemContainer" TargetType="{x:Type ListBoxItem}">
<Setter Property="Padding" Value="3"/>
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<Border x:Name="Border" BorderBrush="{x:Null}" CornerRadius="4" BorderThickness="1" Margin="1">
<Border x:Name="InnerBorder" BorderBrush="{x:Null}" CornerRadius="4" BorderThickness="1">
<ContentPresenter x:Name="ContentPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/>
</Border>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
謝謝。我在樣式中使用了,但禁用ScrollViewer可以解決問題。 –
Luke
2009-06-30 06:09:35