SuperMap.WindowsPhone.Mapping.Layer.OnInitialized C# (CSharp) 메소드

OnInitialized() 개인적인 메소드

private OnInitialized ( EventArgs e ) : void
e System.EventArgs
리턴 void
        internal void OnInitialized(EventArgs e)
        {
            EventHandler<EventArgs> temp = this.Initialized;
            if (temp != null)
            {
                this.Initialized(this, e);
            }
        }