gpt4 book ai didi

c# - 如何在静态属性中使用NotifyOfPropertyChange(Caliburn Micro)

转载 作者:行者123 更新时间:2023-12-03 10:32:43 26 4
gpt4 key购买 nike

  • 为什么我不能在静态属性中使用NotifyOfPropertyChange?
  • 在caliburn micro中是否还有另一个NotifyOfPropertyChange函数可用于静态属性或使用该函数的另一种方式?
    private static string _data = "";

    public static string _Data
    {
    get
    {
    return _data;
    }
    set
    {
    _data = value;
    NotifyOfPropertyChange(() => _Data);
    }
    }
  • 最佳答案

    您可以创建自己的引发StaticPropertyChanged事件的方法:

    private static string _data = "";
    public static string _Data
    {
    get
    {
    return _data;
    }
    set
    {
    _data = value;
    NotifyStaticPropertyChanged(nameof(_Data));
    }
    }



    public static event EventHandler<PropertyChangedEventArgs> StaticPropertyChanged;
    private static void NotifyStaticPropertyChanged(string propertyName)
    {
    if (StaticPropertyChanged != null)
    StaticPropertyChanged(null, new PropertyChangedEventArgs(propertyName));
    }

    请引用以下博客文章以获取更多信息: http://10rem.net/blog/2011/11/29/wpf-45-binding-and-change-notification-for-static-properties

    关于c# - 如何在静态属性中使用NotifyOfPropertyChange(Caliburn Micro),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49943227/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com