运行后将Form中的Panel居中的设置方法

通过设置Panel的Location实现,具体代码如下:

Panel.Location = new Point((this.Size.Width - Panel.Size.Width) / 2, (this.Size.Height - Panel.Size.Height) / 2);

你可能感兴趣的:(C#)