INotifyPropertyChanged property name - hardcode vs reflection?

前端 未结 16 1478
感动是毒
感动是毒 2020-11-28 05:13

What is the best way to specify a property name when using INotifyPropertyChanged?

Most examples hardcode the property name as an argument on the PropertyChanged E

相关标签:
16条回答
  • 2020-11-28 05:23

    Another VERY NICE method I can think of is

    Auto-implement INotifyPropertyChanged with Aspects
    AOP: Aspect oriented programming

    Nice article on codeproject: AOP Implementation of INotifyPropertyChanged

    0 讨论(0)
  • 2020-11-28 05:25

    Yeah I see the use and simplicity of the function you are suggesting, but when considering the running cost due to reflection, yeah that is a bad idea, What I use for this scenario is having a Code snippet added properly to take advantage of the time and error in writing a property with all the Notifyproperty event firing.

    0 讨论(0)
  • 2020-11-28 05:26

    Since C# 6.0 there is a nameof() keyword it will be evaluated at compile time, so it will has the performance as hardcoded value and is protected against mismatch with notified property.

    public event PropertyChangedEventHandler PropertyChanged;
    
    protected void NotifyPropertyChanged(string info)
    {       
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(info));
    }
    public string SelectedItem
    {
        get
        {
            return _selectedItem;
        }
        set
        {
            if (_selectedItem != value)
            {
                _selectedItem = value;
                NotifyPropertyChanged(nameof(SelectedItem));
            }
        }
    }
    private string _selectedItem;
    
    0 讨论(0)
  • 2020-11-28 05:27

    Without be irrevelant, between Hardcode and reflection, my choice is : notifypropertyweaver.

    This Visual Studio package allow you to have the benefits of reflection (maintainability, readability,..) without have to lose perfs.

    Actually, you just have to implement the INotifyPropertyChanged and it add all the "notification stuff" at the compilation.

    This is also fully parametrable if you want to fully optimize your code.

    For example, with notifypropertyweaver, you will have this code in you editor :

    public class Person : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;
    
        public string GivenNames { get; set; }
        public string FamilyName { get; set; }
    
        public string FullName
        {
            get
            {
                return string.Format("{0} {1}", GivenNames, FamilyName);
            }
        }
    }
    

    Instead of :

    public class Person : INotifyPropertyChanged
    {
    
        public event PropertyChangedEventHandler PropertyChanged;
    
        private string givenNames;
        public string GivenNames
        {
            get { return givenNames; }
            set
            {
                if (value != givenNames)
                {
                    givenNames = value;
                    OnPropertyChanged("GivenNames");
                    OnPropertyChanged("FullName");
                }
            }
        }
    
        private string familyName;
        public string FamilyName
        {
            get { return familyName; }
            set
            {
                if (value != familyName)
                {
                    familyName = value;
                    OnPropertyChanged("FamilyName");
                    OnPropertyChanged("FullName");
                }
            }
        }
    
        public string FullName
        {
            get
            {
                return string.Format("{0} {1}", GivenNames, FamilyName);
            }
        }
    
        public virtual void OnPropertyChanged(string propertyName)
        {
            var propertyChanged = PropertyChanged;
            if (propertyChanged != null)
            {
                propertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    }
    

    For french speakers : Améliorez la lisibilité de votre code et simplifiez vous la vie avec notifypropertyweaver

    0 讨论(0)
  • 2020-11-28 05:28

    Take a look at this blog post: http://khason.net/dev/inotifypropertychanged-auto-wiring-or-how-to-get-rid-of-redundant-code

    0 讨论(0)
  • 2020-11-28 05:35

    The problem with the reflection based method is that it's rather expensive, and isn't terribly quick. Sure, it is much more flexible, and less brittle towards refactoring.

    However, it really can hurt performance, especially when things are called frequently. The stackframe method, also (I believe) has issues in CAS (e.g. restricted trust levels, such as XBAP). It's best to hard code it.

    If your looking for fast, flexible property notification in WPF there is a solution -- use DependencyObject :) Thats what it was designed for. If you don't want to take the dependency, or worry about the thread affinity issues, move the property name into a constant, and boom! your good.

    0 讨论(0)
提交回复
热议问题