web-dev-qa-db-ja.com

ユーザーがその行のセルをクリックしたときに完全なdataGridView行を選択するにはどうすればよいですか?

dataGridViewがあり、ユーザーが任意のセルをクリックすると、このセルを含む行全体も選択される必要があります。 (複数選択が不均衡になっています)currentRowIndexをこのように取得してみました

 int Index = dataGridView1.CurrentCell.RowIndex;

ただし、その行を選択するためにインデックスを使用する方法がわかりません。これを試してみましたが、他の6つの方法については成功しませんでした。

dataGridView1.Select(Index);

私がこれを行う方法を知っていますか?

47
Alex Terreaux

DatagridviewのSelectionModeFullRowModeに設定する必要があります。

注:Visual Studio 2013 with .NET 4.5では、プロパティはFullRowSelectと呼ばれます。 https://msdn.Microsoft.com/en-us/library/3c89df86(v = vs.110)を参照してください。 .aspx

87
urlreader

プログラムで行を選択する場合は、datagridviewのセルクリックイベントを使用します:VB.netおよびC#に表示

VB.Net

Private Sub dgvGrid_CellClick(sender as System.Object, e as System.Windows.Forms.DataGridViewCellEventArgs) Handles dgvGrid.CellClick
    If e.RowIndex < 0 Then
        Exit Sub
    End If

    intIndex = e.RowIndex
    dgvGrid.Rows(intIndex).Selected = True
Exit Sub

C#

private void dgvRptTables_CellClick(System.Object sender, System.Windows.Forms.DataGridViewCellEventArgs e)
{
    if (e.RowIndex < 0) {
        return;
    }

    int index = e.RowIndex;
    dgvGrid.Rows[index].Selected = true;
}
9
Rick H.

DataGridViewプロパティで、設定

  • MultiSelect-> True
  • SelectionMode-> FullRowSelect

2
Champ_01

このようなことをすることができます

protected override void Render(HtmlTextWriter writer)
{
    foreach (GridViewRow row in Results.Rows)
    {
        if (row.RowType == DataControlRowType.DataRow)
        {
            row.Attributes["onmouseover"] = "this.style.cursor='pointer';";
            row.CssClass = "rowHover";
            row.ToolTip = "Click row to view person's history";
            row.Attributes.Add("onclick", this.ClientScript.GetPostBackClientHyperlink(this.Results,"Select$" & r.RowIndex , true));
        }
    }

    base.Render(writer);
}
1
Tom McDonough

これを行うことができます:それはあなたを助けることができるかもしれません。

private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
    {
        if (e.RowIndex>0)
        {
            int rowindex = e.RowIndex;
            DataGridViewRow row= this.dataGridView1.Rows[rowindex];
        }
    }
0
//class to store ID (Pri. Key) value of selected row from DataGridView
public class Variables
{
   public static string StudentID;
}                                  

//This is the event call on cell click of the DataGridView
private void dataGridViewDisplay_CellClick(object sender, DataGridViewCellEventArgs e)
{
   Variables.StudentID =this.dataGridViewDisplay.CurrentRow.Cells[0].Value.ToString();
//textBoxName is my form field where I set the value of Name Column from the Selected row from my DataGridView 

   textBoxName.Text = this.dataGridViewDisplay.CurrentRow.Cells[1].Value.ToString();

   dateTimePickerDOB.Value = Convert.ToDateTime(this.dataGridViewDisplay.CurrentRow.Cells[2].Value.ToString());
}

My DataGridViewを見てください

0
Parag555