我有一个包含 datagridview 的表单。每当用户单击一行时,该行正下方会出现一个小面板并显示一些按钮。使用下面的代码,一切都按预期工作:
private void dataGridView1_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
{
rowSelected = e.RowIndex;
columnSelected = e.ColumnIndex;
if (e.RowIndex == -1) return;
var cellRectangle = dataGridView1.PointToScreen(
dataGridView1.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, false).Location);
panel_EditButtons.Location = new Point(cellRectangle.X + 50, cellRectangle.Y);
panel_EditButtons.Show();
}
有人可以告诉我当用户单击一行并且没有足够的空间来显示面板时如何防止面板出现在屏幕外?看看我附上的两张图片:
普通视图(当有足够的空间显示面板时,面板显示正确)
当我单击该行的右侧时(并且没有足够的空间来显示面板,面板出现在屏幕外)
有人可以告诉我即使我单击行的右侧并且没有足够的空间因此面板位置仅限于屏幕宽度,我如何才能显示整个面板?