本文整理自网络,侵删。
Delphi 禁用TEdit右键菜单及复制粘贴简的单方法如下:
1) 设置TEdit的ReadOnly 属性为True
Edit1.ReadOnly := True;
2) 在TEdit的OnContextPopup中使Handled := True
procedure TFrmReport.Edit1ContextPopup(Sender: TObject; MousePos: TPoint;
var Handled: Boolean);
begin
Handled := True;
end;
相关阅读 >>
Delphi edgebrowser1 浏览器实现控制滚动条
Delphi tms web core webhttprequest1 解析json
Delphi sysutils.comparestr、sysutils.comparetext - 字符串比较
更多相关阅读请进入《Delphi》频道 >>