Paint.ColorPicker.OnColorSelected C# (CSharp) Méthode

OnColorSelected() protected méthode

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