WPF 依赖属性使用

前端之家收集整理的这篇文章主要介绍了WPF 依赖属性使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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}"/>

2,在cs文件中定义
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); }
        }
原文链接:https://www.f2er.com/javaschema/285338.html

猜你在找的设计模式相关文章