私のケースの選択基準として Sender を TObject として使用したい ... ステートメント
procedure TForm.ShowGUI (Sender: TObject);
begin
case sender of
ToolButton1: begin
do_something;
end;
ToolButton2: begin
///
end;
ToolButton3: begin
do_stufff_here;
end;
ToolButton3: begin
///
end;
else ;
end;
end;
case ステートメントで要求されたように、送信者を序数型にするトリックはありますか?