csGeoLayers.Content.RainRadar.RainRadarLayer.NotifyPropertyChanged C# (CSharp) 메소드

NotifyPropertyChanged() 개인적인 메소드

private NotifyPropertyChanged ( String info ) : void
info String
리턴 void
        private void NotifyPropertyChanged(String info)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(info));
            }
        }