wpf – Setters不在依赖属性上运行?

前端之家收集整理的这篇文章主要介绍了wpf – Setters不在依赖属性上运行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
只是一个简短的问题,澄清一些疑问。当元素绑定到依赖属性时,设置器是否不运行?
public string TextContent
{
    get { return (string)GetValue(TextContentProperty); }
    set { SetValue(TextContentProperty,value); Debug.WriteLine("Setting value of TextContent: " + value); }
}

public static readonly DependencyProperty TextContentProperty =
    DependencyProperty.Register("TextContent",typeof(string),typeof(MarkdownEditor),new UIPropertyMetadata(""));

… …

<TextBox Text="{Binding TextContent}" />

正如我注意到下面在我的安装程序不运行

Debug.WriteLine("Setting value of TextContent: " + value);
WPF绑定引擎直接调用GetValue和SetValue(绕过属性设置器和getter)。您需要该属性,以便它可以在XAML标记支持(并正确编译)。
原文链接:https://www.f2er.com/javaschema/282466.html

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