在 StatusBar 项目的位置显示 ContextMenuStrip
我想在 StatusStrip 中 ToolStripStatusLabel 的位置显示 ContextMenuStrip。 普通控件有 PointToScreen / PointToClient 等,但由于 ToolStripStatusLabel 是从 Component 派生的,所以没有。
任何帮助,将不胜感激。
I want to show a ContextMenuStrip at the location of a ToolStripStatusLabel in a StatusStrip. Ordinary controls have PointToScreen / PointToClient / etc, but as ToolStripStatusLabel is derived from Component it does not.
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
一个非常非常晚的答案,只是因为我碰巧遇到了同样的问题并用谷歌搜索了这个问题。 我发现的最佳解决方案为迄今为止的答案添加了一个很好的转折。 如下:
将相对于控件的鼠标坐标 (eX, eY) 添加到边界坐标中,使菜单出现在正确的位置。 忽略此选项会显示 ToolStripItem 左上角的菜单。 作为记录。
A very, very late answer, just because I happened to struggle with the same issue and googled up this question. What I found as the best solution adds one nice twist to the answers so far. Here it is:
Adding the mouse coordinates relative to the control (e.X, e.Y) to the bounds coordinates makes the menu appear at exactly the right position. Omitting this shows the menu at the top left corner of the ToolStripItem. For the record.
你不能做这样的事情吗:
Can't you just do something like this:
查看 Bounds 属性ToolStripStatusLabel。 像这样使用它来完成您需要做的事情:
Check out the Bounds property of the ToolStripStatusLabel. Use it like this to do what you need to do:
单击 ToolStripStatusLabel 时,需要执行几个步骤来获取鼠标在窗体上的正确位置。 正如您所提到的,ToolStripStatusLabel 没有 PointToClient 或 PointToScreen 方法,但父 StatusStrip 控件有。
尝试:
There are a couple of steps involved in getting the proper location of the mouse on the form when it's clicked on a ToolStripStatusLabel. As you mention the ToolStripStatusLabel does not have PointToClient or PointToScreen methods, but the parent StatusStrip control does.
Try: