public MainForm() { this.InitializeComponent(); _blendForm = new BlendForm(); _blendForm.Location = new Point(this.Right, this.Top); _paletteForm = new PaletteForm(); _paletteForm.Location = new Point(this.Left - _paletteForm.Width, this.Top); }
public MainForm() { this.InitializeComponent(); _blendForm = new BlendForm(); _blendForm.BlendColorChanged += _blendForm_BlendColorChanged; _blendForm.Location = new Point(this.Right, this.Top); _paletteForm = new PaletteForm(); _paletteForm.GradientBeginChanged += _paletteForm_GradientBeginChanged; _paletteForm.GradientEndChanged += _paletteForm_GradientEndChanged; _paletteForm.Location = new Point(this.Left - _paletteForm.Width, this.Top); }