如何绑定已经绑定的对象?

时间:2013-09-18 23:06:09

标签: xaml windows-phone-7 data-binding telerik bind

在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?

1 个答案:

答案 0 :(得分:1)

您可以使用元素名称绑定:

 <slideView:PanAndZoomImage 
                        Grid.Row="1"
                        ZoomMode="Free"
                        Source="{Binding Source,ElementName=BigImage}"