本文介绍了如何以编程方式改变形式C#中的背景图片的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要改变我的窗体的背景图像,当我克利克一个按钮,将其改回再次为null,则点击第二次,我怎么能这样做呢?

I need to change the background image of my form when i klick a button, and change it back to null again the second time it is clicked, how can i do this?

推荐答案

使用BackgroundImage属性:

Use BackgroundImage property:

form.BackgroundImage = image;

要隐藏图像:

form.BackgroundImage = null;



将这个源代码ClickButton方式:

Put this source code to ClickButton method:

form.BackgroundImage = form.BackgroundImage == null ? image : null;

这篇关于如何以编程方式改变形式C#中的背景图片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 16:23