在itemscontrol中拉伸Itemtemplate画布的宽度

时间:2011-11-04 21:54:24

标签: wpf xaml itemscontrol itemtemplate itemspanel

我有这个代码。出于某种原因,我无法让contentpresenter伸展以填充画布的宽度。我的几个尝试都在xaml中被注释掉了。

<ItemsControl ItemsSource="{Binding MarkerLocations, Mode=OneTime}" HorizontalContentAlignment="Stretch">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <Canvas HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>

    <ItemsControl.ItemContainerStyle>
        <Style TargetType="ContentPresenter">
            <Setter Property="Canvas.Top" Value="{Binding}" />
            <Setter Property="Canvas.Left" Value="0" />
            <!--Setter Property="Width" Value="{Binding Path=Width, RelativeSource={RelativeSource FindAncestor, AncestorType=Canvas, AncestorLevel=1}}"/-->
        </Style>
    </ItemsControl.ItemContainerStyle>

    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <!--Rectangle Stroke="Black" Height="2" Stretch="Fill"/-->
            <Line Stretch="Fill" X2="2" Y1="{Binding Mode=OneTime}" Y2="{Binding Mode=OneTime}" Stroke="Black" StrokeThickness="1"/>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

我有一种感觉,我不理解ItemContainters的上下文。

1 个答案:

答案 0 :(得分:4)

如果要绑定到拉伸对象的宽度,则应绑定到ActualWidth

{Binding ActualWidth, RelativeSource={RelativeSource AncestorType=Canvas}}

修改: 这可能没有必要

除非你告诉他们,画布的习惯是根本不占用任何空间:

  <ItemsControl ItemsSource="{Binding MarkerLocations, Mode=OneTime}">
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <Canvas Background="Red"
                        HorizontalAlignment="Stretch"
                        VerticalAlignment="Stretch"/>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
  </ItemsControl>

设置它的Background是一个有用的“布局调试”技巧,看它是否真的存在。从那里你的一种方法应该有效。