1
That one flag only marks the element as ReadOnly
, to undo this at runtime is to change this value.
For example:
private static void btLiberarBloquearGrid_Click(object sender, EventArgs e)
{
dataGridView.ReadOnly = !dataGridView.ReadOnly;
}
1
1
That one flag only marks the element as ReadOnly
, to undo this at runtime is to change this value.
For example:
private static void btLiberarBloquearGrid_Click(object sender, EventArgs e)
{
dataGridView.ReadOnly = !dataGridView.ReadOnly;
}
Perfect thank you very much was just what I needed Vlw
Browser other questions tagged c# winforms
You are not signed in. Login or sign up in order to post.
"I unchecked the field change option" How did you do it?
– Jéf Bueno
I put the image to show, now I need to enable editing when clikar on change button.
– Junior Guerreiro
Okay, look at my answer.
– Jéf Bueno