ARCed.Dialogs.ColorChooserForm.SetHSVLabels C# (CSharp) Method

SetHSVLabels() private method

private SetHSVLabels ( ColorHandler hsv ) : void
hsv ARCed.Core.ColorHandler
return void
        private void SetHSVLabels(ColorHandler.HSV hsv)
        {
            RefreshText(this.lblHue, hsv.Hue);
            RefreshText(this.lblSaturation, hsv.Saturation);
            RefreshText(this.lblValue, hsv.Value);
            RefreshText(this.lblAlpha, hsv.Alpha);
        }