Delphi 可不可以通过Button的caption属性 来让一个Button实现两个Button的功能?

2024-12-14 03:09:46
推荐回答(3个)
回答1:

当然可以啊,判断一下caption的内容,根据它执行不同的方法
if button1.caption = '添加' then
******
else if button1.caption = '更新'then
******
end;

回答2:

可在Button的OnClick事件中添加如下代码:
if (Sender as TButton).Caption='添加' then
begin
//此处为插入数据的代码
end
else if (Sender as TButton).Caption='更新' then
begin
//此处为更新数据的代码
end
else
Showmessage('按钮标题不正确,请检查修正');

回答3:

完全可以的,先判断一下button的caption值就可以了