当前位置:  开发笔记 > Android > 正文

我的静态模型/属性未绑定到我的UI

如何解决《我的静态模型/属性未绑定到我的UI》经验,为你挑选了1个好方法。

WPF的新手。

我正在尝试将模型绑定到UI。因此,当在用户操作期间更改属性时,我希望该字段在UI上发生的任何地方进行更新。

这是我的模型:

namespace WpfApplication1
{
    public class model2
    {
        private static string myField2;

        public static string MyField2
        {

            get { return myField2; }
            set { myField2 = value; }
        }
    }
}

我的标记:


    
        
    
    
        
                 
            

我后面的代码:

using System.Windows;

namespace WpfApplication1
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            model2.MyField2 = "static!";
        }
    }
}

UI上的字段不变吗?



1> nkoniishvt..:

您需要通知对UI的更改,以便可以使用新值进行更新。

对于您的情况,您想通知静态属性更改,因此您需要一个静态事件。问题在于INotifyPropertyChanged接口需要一个成员事件,因此您将无法采用这种方式。

最好的选择是实现Singleton模式:

namespace WpfApplication1
{
    public class model2 : INotifyPropertyChanged
    {
        //private ctor so you need to use the Instance prop
        private model2() {}

        private string myField2;

        public string MyField2
        {

            get { return myField2; }
            set { 
                myField2 = value; 
                OnPropertyChanged("MyField2");
            }
        }

        private static model2 _instance;

        public static model2 Instance {
            get {return _instance ?? (_instance = new model2();)}
        }

        public event PropertyChangedEventHandler PropertyChanged;

        protected virtual void OnPropertyChanged(string propertyName) {
            var handler = PropertyChanged;
            if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

然后使您的属性成为成员属性并像这样进行绑定:


    
        
    
    
        
              
            

后面的代码:

using System.Windows;

namespace WpfApplication1
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            model2.Instance.MyField2 = "static!";
        }
    }
}

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