- 1
- 2
- 3
- 4
- 5
private void image_hide_show(object sender, EventArgs e)
{
for(int i = 0; i < Controls.Count; i++)
if ((sender as PictureBox).Name + "_img" == Controls[i].Name) Controls[i].Visible = !Controls[i].Visible;
}
Комментарии (2) RSS
Добавить комментарий