im doing a windows form on c#. I have a groupPanel1 and in it are 7 textboxes. Whenever i click on any textbox that is in the group panel, the button save (btnSave) outside the panel is enabled. Is there a way to have an array or create a custom event where i click any of the textboxes or the panel will result to enabling the save button? or whatever helps.
private void groupPanel1_Click(object sender, EventArgs e)
{
btnSave.Enabled = true;
}