1

こんにちはプログラマー、実際にはDataGridvIewにDataGridViewComboBoxCellがあり、CellContentClickイベントが発生したときに条件がtrueの場合、DataGridViewComboBoxの値を変更する必要があります。私のコードは次のようになります:

    private void gridviewholiday_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
    {
        int row = e.RowIndex;
        int colo = e.ColumnIndex;


        /*=============== To Show The Details  =====================*/

        if (e.ColumnIndex == 4)
        {
            if (Convert.ToBoolean(gridviewholiday.Rows[e.RowIndex].Cells[0].Value))
            {
                if (Type == "CUS")
                {
                    Type = test.colType;
                    if (Type == "NO")
                    {


                        ComboBox combo = (ComboBox)sender;
                        combo.SelectedIndex = 0;

                    }
                }
    }

ただし、DataGridViewをComboboxにキャストしているときにエラーが発生します。

私を助けてください。

4

2 に答える 2

1

皆さん、こんにちは!

答えが返ってきたので、DataGridviewComboBoxCellを手動で選択しました。

private void gridviewholiday_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
{
    int row = e.RowIndex;
    int colo = e.ColumnIndex;


    /*=============== To Show The Details  =====================*/

    if (e.ColumnIndex == 4)
    {
        if (Convert.ToBoolean(gridviewholiday.Rows[e.RowIndex].Cells[0].Value))
        {
            if (Type == "CUS")
            {
                Type = test.colType;
                if (Type == "NO")
                {
                     /*===== set the selected value of comboboxCellItems   ==========*/

                      gridviewholiday.Rows[e.RowIndex].Cells["colType"].Value="ALL"



                }
            }
}

そしてついに私の問題は解決しました。

于 2012-03-30T09:03:33.340 に答える
0

これを試して

Private Sub dgvMain_CellMouseEnter(sender As Object, e As DataGridViewCellEventArgs) Handles dgvMain.CellMouseEnter
        Dim dgv As DataGridView
        dgv = DirectCast(sender, DataGridView)
        If dgv IsNot Nothing Then
            Dim cmb As DataGridViewComboBoxCell 
            cmb = DirectCast(dgv.Rows(e.RowIndex).Cells(e.ColumnIndex), DataGridViewComboBoxCell)
            If cmb IsNot Nothing Then
                cmb.Selected = True
            End If
        End If
    End Sub
于 2022-03-04T22:47:52.177 に答える