如何根据徽章标题使用案例陈述?试过:
procedure TForm2.Button1Click(Sender: TObject);
begin
case AdvBadgeGlowButton1.Caption of
'Test' : showmessage('Test')
end;
'' : showmessage('Empty')
end;
但我得到:
[dcc32 错误] Unit2.pas(29): E2001 需要序数类型 [dcc32 错误]
Unit2.pas(30):E2010 不兼容的类型:“整数”和“字符串”