2

DataTemplate在 WPF 中创建一个,所以如果我使用x:Name. 这是我的代码的相关部分:

<DataTemplate>
    <StackPanel>
        <Image .../>
        <Textbox Width={Binding to image?, Path=ActualWidth} />
    </StackPanel>
</DataTemplate>

如何在不使用名称的情况下绑定到图像?

4

1 回答 1

0

您可以使用RelativeSource

<DataTemplate>
      <StackPanel>                        
          <Image Source="{Binding Photo}"/>
          <TextBox Width="{Binding Path=Children[0].ActualWidth, Mode=OneWay, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=StackPanel, AncestorLevel=1}}" />
       </StackPanel>
</DataTemplate>

您不能直接绑定到 Image,但您可以使用StackPanel和属性 Children 来做到这一点。

于 2013-01-13T15:43:58.443 回答