码迷,mamicode.com
首页 > Windows程序 > 详细

C#Windows Forms (Demo.SYS)--xdd

时间:2019-08-22 01:19:07      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:path   没有   func   windows   email   htm   next   write   new   

 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

标签:path   没有   func   windows   email   htm   next   write   new   

原文地址:https://www.cnblogs.com/xdd1997/p/11392081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!