Download CmykRgbColorConversion.zip, last updated 15/07/2018 (19.21 KB)

Download
  • md5: 1258961adc735c8388f9b35d867df7c6
  • sha1: 1e01eb8723aac6632f1c0fff5fb57f524116329c
  • sha256: cfc2141a0f0820962621bc35e10882e648c95496751b65ded610a0009faae5a6
using System;

// Converting colours between RGB and CMYK in C#
// https://www.cyotek.com/blog/converting-colours-between-rgb-and-cmyk-in-csharp
// Copyright © 2018 Cyotek Ltd. All Rights Reserved.

// This work is licensed under the Creative Commons Attribution 4.0 International License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.

// Found this example useful? 
// https://www.paypal.me/cyotek

namespace Cyotek.Demo.CmykRgbColorConversion
{
  internal sealed class NumericUpDown : System.Windows.Forms.NumericUpDown
  {
    #region Methods

    protected override void OnEnter(EventArgs e)
    {
      base.OnEnter(e);

      this.Select(0, this.Text.Length);
    }

    #endregion
  }
}

Donate

Donate