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

C#单击按钮显示图片,带开始停止

时间:2014-12-15 21:45:53      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   for   on   art   cti   as   tt   

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
//取图片
pictureBox1.Image = imageList1.Images[0];
}

private void button2_Click(object sender, EventArgs e)
{
timer1.Start();
}

private void timer1_Tick(object sender, EventArgs e)
{
int i;
Random r = new Random();
i = r.Next(0, imageList1.Images.Count);
pictureBox1.Image = imageList1.Images[i];

}

private void button3_Click(object sender, EventArgs e)
{
timer1.Stop();
}
}
}

C#单击按钮显示图片,带开始停止

标签:io   ar   sp   for   on   art   cti   as   tt   

原文地址:http://www.cnblogs.com/xiaz/p/4165912.html

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