将DependencyProperty的默认值绑定到动态或静态资源

时间:2018-12-03 16:36:49

标签: c# wpf dependency-properties

嗨,我已经创建了一个依赖项属性,现在我想为其设置默认画笔(当前是透明的),但是我想绑定到静态或动态资源。
这是我的代码

public static readonly DependencyProperty SideBrushProperty = DependencyProperty.RegisterAttached(
            "SideBrush", typeof(Brush), typeof(ImageRadioButton), new FrameworkPropertyMetadata(Brushes.Transparent, FrameworkPropertyMetadataOptions.Inherits));

我该怎么做?

0 个答案:

没有答案