public Form1() { InitializeComponent(); // criar e inicializar objecto float larguraA = this.pictureBoxA.Width; float alturaA = this.pictureBoxA.Height; objA = new Objecto(larguraA, alturaA); //criar e configurar a pen e o brush penA = new Pen(this.corContorno_A.BackColor); brushA = new SolidBrush(this.corObj_A.BackColor); // atribuir a pen e o brush ao objecto objA.setCores(penA, brushA); // criar e inicializar objecto float largura_B = this.pictureBoxA.Width; float altura_B = this.pictureBoxA.Height; objB = new Objecto(largura_B, altura_B); //criar e configurar a pen e o brush penB = new Pen(this.corContorno_B.BackColor); brushB = new SolidBrush(this.corObj_B.BackColor); // atribuir a pen e o brush ao objecto objB.setCores(penB, brushB); }
private void setCores() { if (penA != null && brushA != null) { brushA.Color = this.corObj_A.BackColor; penA.Color = this.corContorno_A.BackColor; penA.Width = (float)this.espec_A.Value; objA.setCores(penA, brushA); } if (penB != null && brushB != null) { brushB.Color = this.corObj_B.BackColor; penB.Color = this.corContorno_B.BackColor; penB.Width = (float)this.espec_B.Value; objB.setCores(penB, brushB); } }