/// <summary>
        /// Handles the <see cref="E:ColorPicked" /> event.
        /// </summary>
        /// <param name="e">The <see cref="ColorPickedEventArgs"/> instance containing the event data.</param>
        protected virtual void OnColorPicked(ColorPickedEventArgs e)
        {
            var handler = ColorPicked;

            if (handler != null)
            {
                handler(this, e);
            }
        }
 /// <summary>
 /// Handles the <see cref="E:ColorPicked" /> event.
 /// </summary>
 /// <param name="e">The <see cref="ColorPickedEventArgs"/> instance containing the event data.</param>
 protected virtual void OnColorPicked(ColorPickedEventArgs e)
 {
     var handler = ColorPicked;
     if (handler != null)
     {
         handler(this, e);
     }
 }