Delphi:弹出菜单
有一个列表视图+一个弹出菜单。我需要在存在项目时显示弹出菜单。菜单项数为 0 时不得出现。
这个大概的代码是否合适(可以作为基础)?
procedure TForm1.StringGrid1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var P: TPoint;
begin
P:=GetClientOrigin;
if Button = mbRight then
PopupMenu1.Popup(X+P.X+StringGrid1.Left, Y+P.Y+StringGrid1.Top);
end;
还有其他方法吗?
谢谢!!!
There is a list View + a PopUpMenu. I need that the PopUpMenu appears when items are present. The menu must not appears when 0 items.
Is this approximate code appropriate (can be used as a basis)?
procedure TForm1.StringGrid1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var P: TPoint;
begin
P:=GetClientOrigin;
if Button = mbRight then
PopupMenu1.Popup(X+P.X+StringGrid1.Left, Y+P.Y+StringGrid1.Top);
end;
Are there other ways?
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,不要对鼠标事件执行任何操作,因为可以从键盘调用弹出菜单。
在我看来,最好的方法是处理
OnPopup
事件。如果您希望菜单不出现,请调用Abort
。Firstly, don't do anything on a mouse event because the popup menu can be invoked from the keyboard.
The best way to do this, in my view, is to handle the
OnPopup
event. If you want the menu not to appear callAbort
.