System.Windows.Forms.ColorPickerForm.ValueSaturationPicker.UpdateValues()

Here are the examples of the csharp api class System.Windows.Forms.ColorPickerForm.ValueSaturationPicker.UpdateValues() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: Unity-WinForms
Source File: ColorPickerForm.cs
protected override void OnMouseUp(MouseEventArgs e)
            {
                UpdateValues();
                mouseDown = false;

                base.OnMouseUp(e);
            }

2. Example

Project: Unity-WinForms
Source File: ColorPickerForm.cs
private void MouseHookUpHandler(object sender, MouseEventArgs e)
            {
                if (mouseDown)
                    UpdateValues();

                mouseDown = false;
            }