pascalabcnet/TestSamples/CompilationSamples/gr_ButtonProba.pas

16 lines
313 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

uses GraphABC,ABCObjects,ABCButtons,Events;
var b: ButtonABC;
procedure Click;
begin
b.Text:='Нажали!';
end;
begin
b:=ButtonABC.Create(10,10,240,'Кнопка12345678901234567',clMoneyGreen);
b := new ButtonABC(10,10,240,'Кнопка12345678901234567',clMoneyGreen);
b.OnClick:=Click;
end.