111,092
社区成员




public Form1()
{
InitializeComponent();
Panel panel = new Panel()
{
Size = new Size(this.Width-100,this.Height-100),
Location = new Point(10,10),
BackColor = Color.SteelBlue,
};
this.Controls.Add(panel);
this.Resize += (sender,e)=>
{
panel.Size = new Size(this.Width - 100, this.Height - 100);
};
}