我想将图像设置为Windows窗体按钮的背景。
图像将添加到项目资源中。
我该怎么做?
答案 0 :(得分:4)
只需设置Button的BackgroundImage属性即可。一个例子:
button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));
答案 1 :(得分:4)
您可以在加载应用程序时或在需要设置应用程序时使用此功能。
button.BackgroundImage = YourApplicationNamespace.Properties.Resources.yourImageHere;
答案 2 :(得分:3)
在Visual Studio中,您可以执行以下操作:
BackgroundImage
项。 或者,从代码中您可以执行此操作:
button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));