如何在属性网格中右键单击选择单元格

发布于 2024-10-21 20:28:29 字数 102 浏览 0 评论 0原文

我有一个 propertyGridControl - 当鼠标右键单击它时如何处理 - 如果单击一行但仅单击该行中的属性值而不是属性名称所在的单元格?现在它只是引发右键单击事件而不标记单元格。

I have a propertyGridControl - how to handle when mouse right is clicked on it - if its clicked on a row but only on the value of the property in this row and not on the cell in which is the name of the property? Now its just raising the rightclick event and not marking the cell.

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

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

发布评论

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

评论(1

白馒头 2024-10-28 20:28:29

此类任务通常使用控件的 CalcHitInfo 方法来实现。它用于确定单击的控件的区域。这是代码:

private void propertyGridControl1_MouseClick(object sender, MouseEventArgs e) {
    if(e.Button == System.Windows.Forms.MouseButtons.Right) {
        VGridHitInfo hInfo = propertyGridControl1.CalcHitInfo(new Point(e.X, e.Y));
        if(hInfo.HitInfoType == HitInfoTypeEnum.ValueCell) {
            propertyGridControl1.FocusedRow = hInfo.Row;
            propertyGridControl1.FocusedRecordCellIndex = hInfo.CellIndex;
            propertyGridControl1.FocusedRecord = hInfo.RecordIndex;
            propertyGridControl1.ShowEditor();
        }
    }
}

Such tasks are usually implemented using the control's CalcHitInfo method. It is used to determine the clicked control's area. Here is the code:

private void propertyGridControl1_MouseClick(object sender, MouseEventArgs e) {
    if(e.Button == System.Windows.Forms.MouseButtons.Right) {
        VGridHitInfo hInfo = propertyGridControl1.CalcHitInfo(new Point(e.X, e.Y));
        if(hInfo.HitInfoType == HitInfoTypeEnum.ValueCell) {
            propertyGridControl1.FocusedRow = hInfo.Row;
            propertyGridControl1.FocusedRecordCellIndex = hInfo.CellIndex;
            propertyGridControl1.FocusedRecord = hInfo.RecordIndex;
            propertyGridControl1.ShowEditor();
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文