Example #1
0
		private void OnBlendColorChanged(ColorEventArgs e)
		{
			if (this.BlendColorChanged != null)
			{
				this.BlendColorChanged(this, e);
			}
		}
Example #2
0
		private void OnGradientEndChanged(ColorEventArgs e)
		{
			if (this.GradientEndChanged != null)
			{
				this.GradientEndChanged(this, e);
			}
		}
Example #3
0
 private void OnBlendColorChanged(ColorEventArgs e)
 {
     if (this.BlendColorChanged != null)
     {
         this.BlendColorChanged(this, e);
     }
 }
Example #4
0
 private void OnGradientEndChanged(ColorEventArgs e)
 {
     if (this.GradientEndChanged != null)
     {
         this.GradientEndChanged(this, e);
     }
 }
Example #5
0
 private void _paletteForm_GradientEndChanged(Object sender, ColorEventArgs e)
 {
     _blendForm.SetGradientEnd(e.Color);
 }
Example #6
0
 private void _blendForm_BlendColorChanged(Object sender, ColorEventArgs e)
 {
     _colorPanel.SelectedColor = e.Color;
 }