2
我有TButton和TPaintBox簡單的FreePascal代碼。TPaintBox不畫在TButton事件「onClick」
我對這些元素的事件:
procedure TForm1.Button1Click(Sender: TObject);
begin
Button1.Enabled := False;
Button2.Enabled := True;
Button1.Caption := 'Off';
Button2.Caption := 'On';
PaintBox1.Invalidate;
PaintBox1.Color := clYellow;
end;
procedure TForm1.PaintBox1Paint(Sender: TObject);
begin
PaintBox1.Canvas.Brush.Color := clGreen;
PaintBox1.Canvas.Ellipse(0,0,100,50);
end;
但不畫我與TButton的onClick事件TPaintBox。
有人可以幫我嗎?
謝謝。
非常感謝。它有很多幫助。有用。我是FreePascal(Lazarus)的初學者,沒有好的教程。 – petesalt
不客氣! – TLama