我正在使用下面的代码来设置 MdiParent 表单的背景图像,它运行良好,但是当我单击最大化按钮时,BackgroundImage 在右侧和底部边缘重复(即右侧和底部图像部分重复),怎么办我避免这种情况并正确显示图像?
public Parent()
{
InitializeComponent();
foreach (Control ctl in this.Controls)
{
if (ctl is MdiClient)
{
ctl.BackgroundImage = Properties.Resources.bg;
ctl.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
break;
}
}
}