ZForge.Controls.ExplorerBar.TaskItem.FireCustomSettingsChanged C# (CSharp) 메소드

FireCustomSettingsChanged() 개인적인 메소드

Raises the CustomSettingsChanged event
private FireCustomSettingsChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data
리턴 void
        internal void FireCustomSettingsChanged(EventArgs e)
        {
            if (this.Expando != null)
            {
                this.Expando.DoLayout();
            }

            this.Invalidate();

            this.OnCustomSettingsChanged(e);
        }