本文介绍了设置WM表单的BackGround图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嘿,我需要在Windows Mobile应用程序6中设置背景图像
我发现它只是背景颜色道具而已.存在
我不需要放图片框或仅是背景色的任何东西
有什么想法吗?
thx for read

Hey all i need to set background Image in windows mobile application 6
i dnt found it in properities just background color prop. is exist
i dnt need to put picture box or anything just background color
any idea ??
thx for read

推荐答案

PictureBox pb = new PictureBox();<br />
            pb.Size = this.Size;<br />
            pb.Image = ((System.Drawing.Image)(resources.GetObject("Your.Image")));


这篇关于设置WM表单的BackGround图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 02:14