System.Windows.Forms.ColorPickerForm.BrightnessSaturationPicker.BrightnessSaturationPicker C# (CSharp) Method

BrightnessSaturationPicker() public method

public BrightnessSaturationPicker ( int w, int h ) : System
w int
h int
return System
            public BrightnessSaturationPicker(int w, int h)
            {
                Size = new Size(w, h);

                _image = new UnityEngine.Texture2D(w, h);
                _UpdateImage();

                Owner.UpClick += Application_UpClick;
            }