我有一個DataGridView鏈接到ContextMenuStrip。 DataGridView被填充。我選擇一行(任何單元格),當我右鍵單擊時,它會打開一個菜單,我可以在其中選擇編輯,重命名或刪除。我如何將選定行的行號傳遞給我的ContextMenuStrip? 所以我離開單擊選擇行號2中的單元格。我右鍵單擊DataGridView上的任意位置,然後選擇「重命名」。 我想要得到一條消息「你想重命名行號2」。這將是確定直接在行號2右鍵單擊並獲取消息(未首先選擇的行號2單元格)。這裏是我的代碼嘗試:DataGridView和右鍵單擊
void RenameToolStripMenuItemClick(object sender, EventArgs e)
{ //this should rename the table
MessageBox.Show("This should rename the selected row number " + dataGridView1.SelectedRows.ToString());
}
這是在WPF或的WinForms? – TylerD87