在 xaml 中,我有图像的依赖属性(类似于缓存器)。现在,我想将 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?