在选定的 TreeView 节点上打开上下文菜单

发布于 2024-10-20 01:57:15 字数 456 浏览 0 评论 0原文

这段代码有什么问题?

 Private Sub trvHeader_NodeMouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeNodeMouseClickEventArgs) Handles trvHeader.NodeMouseClick
            If e.Button = Windows.Forms.MouseButtons.Right Then
                trvHeader.SelectedNode = e.Node
                Dim p As Point = New Point(e.X, e.Y)

                mnuRoot.Show(p)
            End If
        End Sub

上下文菜单未在正确的位置打开。

What is the problem with this code ?

 Private Sub trvHeader_NodeMouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeNodeMouseClickEventArgs) Handles trvHeader.NodeMouseClick
            If e.Button = Windows.Forms.MouseButtons.Right Then
                trvHeader.SelectedNode = e.Node
                Dim p As Point = New Point(e.X, e.Y)

                mnuRoot.Show(p)
            End If
        End Sub

the context menu does not open in right position.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪眸﹌ 2024-10-27 01:57:15

ContextMenuStrip.Show(Point) 重载要求该点位于屏幕坐标中。修复:

 mnuRoot.Show(trvHeader, p)

或使用 Control.PointToScreen()

The ContextMenuStrip.Show(Point) overload requires the point to be in screen coordinates. Fix:

 mnuRoot.Show(trvHeader, p)

or use Control.PointToScreen()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文