ARCed.Dialogs.ColorChooserForm.HandleRGBScroll C# (CSharp) Метод

HandleRGBScroll() приватный Метод

private HandleRGBScroll ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private void HandleRGBScroll(object sender, EventArgs e)
        {
            this._changeType = ChangeStyle.RGB;
            this._argb = new ColorHandler.ARGB(this.tbAlpha.Value, this.tbRed.Value, this.tbGreen.Value, this.tbBlue.Value);
            this.SetHSV(ColorHandler.RGBtoHSV(this._argb));
            this.SetRGBLabels(this._argb);
            Invalidate();
        }