Meine Klasse sähe so aus:
Delphi-Quellcode:
type
TAddition = class
private
FErgebnis: Integer;
public
procedure Addition;
property Zahl1: Integer read FZahl1 write FZahl1;
property Zahl2: Integer read FZahl2 write FZahl2;
property Ergebnis: Integer read FErgebnis;
end;
und dann würde ich die Properties an die Edits und das Label binden und die Methode an den Button