当前位置:  开发笔记 > 编程语言 > 正文

GridView中的双向数据绑定

如何解决《GridView中的双向数据绑定》经验,为你挑选了1个好方法。



1> Bubblewrap..:

使用依赖项属性时,不会通过绑定调用Setter,而是直接更改值(使用SetValue或类似的东西).

尝试添加PropertyChangedCallback,并在其中设置断点以查看是否从GridView更改了值.

public static readonly DependencyProperty BoolProperty =
    DependencyProperty.Register("Bool", typeof(bool), typeof(TestRow), new UIPropertyMetadata(false, OnBoolChanged));
private static void OnBoolChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
    //this method will be called everytime Bool changes value
}

推荐阅读
夏晶阳--艺术
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有