Paint.ColorPicker.OnColorSelected C# (CSharp) 메소드

OnColorSelected() 보호된 메소드

Raises the color selected event.
protected OnColorSelected ( EventArgs e ) : void
e System.EventArgs /// Any relevant EventArgs (Should be EventArgs.empty) ///
리턴 void
        protected virtual void OnColorSelected(EventArgs e)
        {
            if (this.ColorSelected != null)
            {
                this.ColorSelected(this, EventArgs.Empty);
            }
        }