0
How can I center panel1
within groupbox
?
Follows code:
private void Form1_Load(object sender, EventArgs e)
{
// aqui defino novo size do panel1
panel1.Size = new Size(591, 423);
}
The problem is that the panel1
is not centralized.
Some solution ?