C#Windows Forms (Demo.SYS)--xdd
Posted xdd1997
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#Windows Forms (Demo.SYS)--xdd相关的知识,希望对你有一定的参考价值。
1 private void Show_background_picture()//随机更换背景 2 3 string img_no = "01";//默认值 4 Random ran = new Random(); 5 int bg_index = ran.Next(1, 3);//返回一个1到3之间的随机数(1,2,3) 6 if (bg_index < 10)//防止背景图片大于9张,图片文件名为01 02 03... 7 img_no = "0" + bg_index.ToString(); 8 else 9 img_no = bg_index.ToString(); 10 //if 没有end 11 //设置背景图片 @"\picture\"等效于"\\picture\\" 12 this.BackgroundImage = Image.FromFile(Application.StartupPath + @"\picture\" + img_no + ".png");//参数:存储图片文件的路径 13
write bu xdd 2019-08-22 00:21:20
以上是关于C#Windows Forms (Demo.SYS)--xdd的主要内容,如果未能解决你的问题,请参考以下文章
如何衡量c#中两个关键事件之间的时间?(不是windows.forms)
为啥没有类似 C++ 的 Windows.Forms 程序(有吗?)
使用 C# Windows Forms 和 webclient 下载文件
C# Windows Forms Spotify API 用户授权