eu criei um gridview via código e quero alterar o texto do botão para a linha clicada de + para - quando isso for clicado pelo usuário. Eu verifiquei vários códigos abaixo, o código que estou usando atualmente e tentando alterar o texto de + para - e vice-versa abaixoParentGrid_CellContentClick
private void InitializeParentGrid()
{
parentGrid = new DataGridView
{
Dock = DockStyle.Fill,
AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill,
RowHeadersVisible = false,
AllowUserToAddRows = false,
ColumnHeadersVisible = false // Hide column headers
};
// Add Expand button column
var expandColumn = new DataGridViewButtonColumn
{
Name = "Expand",
HeaderText = "",
Text = "+",
UseColumnTextForButtonValue = true,
Width = 30, // Set a small width
AutoSizeMode = DataGridViewAutoSizeColumnMode.None,
};
expandColumn.UseColumnTextForButtonValue = true;
parentGrid.Columns.Add(expandColumn);
// Add Year column
var yearColumn = new DataGridViewTextBoxColumn
{
Name = "Year",
HeaderText = "Year",
DataPropertyName = "Year"
};
parentGrid.Columns.Add(yearColumn);
// Add Parent Grid to GroupBox1
groupBox1.Controls.Add(parentGrid);
// Parent grid events
parentGrid.CellContentClick += ParentGrid_CellContentClick;
}
E aqui estou alterando o valor da célula da grade + para - após clicar
private void ParentGrid_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex < 0) return;
if (e.ColumnIndex == 0)
{
var buttonCell = (DataGridViewButtonCell)parentGrid.Rows[e.RowIndex].Cells[0];
if (expandedRowIndex == e.RowIndex)
{
// Collapse if already expanded
RemoveChildGrid();
expandedRowIndex = -1;
// Change the button text back to "+"
buttonCell.Value = "+"; // Change button text for the clicked row
}
else
{
// Collapse any existing child grid first
RemoveChildGrid();
// Expand new child grid
expandedRowIndex = e.RowIndex;
AddChildGrid(e.RowIndex);
// Change the button text to "-"
buttonCell.Value = "-"; // Change button text for the clicked row
}
// Force the DataGridView to redraw this specific cell
parentGrid.InvalidateCell(buttonCell);
}
}
E se você tentasse remover essas
UseColumnTextForButtonValue
instruções e inicializasse sempre que uma nova linha fosse adicionada?