标签:des blog 使用 ar 文件 2014 sp log on
1,在XML中绑定
xmlns:toolbox="clr-namespace:EBookApp.Toolbox"
<Image x:Name="imageShort" Stretch="Fill" Width="50" d:LayoutOverrides="HorizontalMargin" Source="{Binding RelativeSource={RelativeSource AncestorType=toolbox:ResDetailItemControl},Path=Thumbnail}"/>
public static readonly DependencyProperty ThumbnailProperty = DependencyProperty.Register("Thumbnail", typeof(string), typeof(ResDetailItemControl), new PropertyMetadata("../Images/img.png")); public string Thumbnail { get { return (string)GetValue(ThumbnailProperty); } set { SetValue(ThumbnailProperty, value); } }
标签:des blog 使用 ar 文件 2014 sp log on
原文地址:http://blog.csdn.net/haifengzhilian/article/details/39227729