delphi用例在AdvBadgeGlowButton1标题上
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi用例在AdvBadgeGlowButton1标题上相关的知识,希望对你有一定的参考价值。
如何根据徽章标题使用案例陈述?试过:
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不兼容的类型:'整数'和'字符串'
答案
case
不能用于非ordinal types的值(通常是整数值),如错误消息所示。你需要使用if..else
代替。
procedure TForm2.Button1Click(Sender: TObject);
begin
if AdvBadgeGlowButton1.Caption = 'Test' then
ShowMessage('Test')
else if AdvBadgeGlowButton1.Caption = '' then
ShowMessage('Empty')
else
ShowMessage('Got unknown caption ' + AdvBadgeGlowButton1.Caption);
end;
以上是关于delphi用例在AdvBadgeGlowButton1标题上的主要内容,如果未能解决你的问题,请参考以下文章
使用 UI 测试用例在 android studio 中运行测试