c# 设置MdiClient窗体的背景图片
程序员文章站
2022-04-28 11:09:48
在窗体的InitializeComponent();方法后面添加下面的代码。 MdiClient MC = new MdiClient(); MC.Name = "MdiClientForm"; MC.Dock = DockStyle.Fill; MC.BackgroundImageLayout = ......
在窗体的initializecomponent();方法后面添加下面的代码。
mdiclient mc = new mdiclient();
mc.name = "mdiclientform";
mc.dock = dockstyle.fill;
mc.backgroundimagelayout = imagelayout.stretch;这句其实不会起作用的,写在这里只是说明一下。
mc.backgroundimage= global::dispenserautomatic.properties.resources.bg;
要想使用backgroundimagelayout属性,只要设置主窗体的backgroundimagelayout属性就会起作用了。