Я установил contextmenu для отображения при событии cellmousedown элемента управления DataGridView, когда пользователь щелкает правой кнопкой мыши по строке.После того, как форма, содержащая сетку, открыта, я должен щелкнуть 2 раза по строке, чтобы контекстное меню появилось.После этого «первого открытия» контекстное меню ведет себя нормально -> оно показывается только после одного щелчка, независимо от того, на каком элементе управления у меня есть фокус.Я предполагаю, что есть неправильная установка для свойства / метода сетки, но какой?
Вот код для формата сетки:
/* format grid */
// Initialize basic DataGridView properties.
dgv.BackgroundColor = Color.LightGray;
dgv.BorderStyle = BorderStyle.FixedSingle;
// Set property values appropriate for read-only display and limited interactivity.
dgv.AllowUserToAddRows = false;
dgv.AllowUserToDeleteRows = false;
dgv.AllowUserToOrderColumns = true;
dgv.ReadOnly = true;
dgv.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dgv.MultiSelect = false;
dgv.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None;
dgv.AllowUserToResizeColumns = false;
dgv.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
dgv.AllowUserToResizeRows = false;
dgv.RowHeadersVisible = false;
dgv.RowsDefaultCellStyle.BackColor = Color.White;
dgv.AlternatingRowsDefaultCellStyle.BackColor = Color.LightGoldenrodYellow;
// Set the row and column header styles.
dgv.ColumnHeadersDefaultCellStyle.ForeColor = Color.Black;
dgv.ColumnHeadersDefaultCellStyle.BackColor = Color.White;
dgv.RowTemplate.MinimumHeight = 38;
dgv.DefaultCellStyle.WrapMode = DataGridViewTriState.True;
DataGridViewCellStyle hStyle = new DataGridViewCellStyle();
hStyle.Font = new Font("Arial", 9, FontStyle.Bold);
dgv.ColumnHeadersDefaultCellStyle = hStyle;
DataGridViewCellStyle cellStyle = new DataGridViewCellStyle();
cellStyle.Font = new Font("Arial", 8, FontStyle.Regular);
cellStyle.Alignment = DataGridViewContentAlignment.MiddleLeft;
И это код, который запускает apeareanceиз контекстного меню:
private void dgv_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
{
// Ignore if a column or row header is clicked
if (e.RowIndex != -1 && e.ColumnIndex != -1)
{
if (e.Button == MouseButtons.Right)
{
DataGridViewCell clickedCell = (sender as DataGridView).Rows[e.RowIndex].Cells[e.ColumnIndex];
// Here you can do whatever you want with the cell
dgv.CurrentCell = clickedCell; // Select the clicked cell, for instance
// Get mouse position relative to the vehicles grid
var relativeMousePosition = dgv.PointToClient(Cursor.Position);
// Show the context menu
mnuOferta.Show(dgv, relativeMousePosition);
}
}
Спасибо!