在xaml中,我有图像的依赖属性(其工作方式类似于cacher)。现在,我想将PanAndZoomImage绑定到同一个图像,但它不能使用DP,因为它不是从Image继承的。
我可以绑定吗?
<Image
x:Name="BigImage"
wpExtensions:ImageProperties.LazyLink="{Binding ProductItem.Image}" />
<slideView:PanAndZoomImage
Grid.Row="1"
ZoomMode="Free"
Source="{Binding BigImage}" // How to bind here to image?
答案 0 :(得分:1)
您可以使用元素名称绑定:
<slideView:PanAndZoomImage
Grid.Row="1"
ZoomMode="Free"
Source="{Binding Source,ElementName=BigImage}"