using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace _05_摇奖机应用程序
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
bool b = false;
private void button1_Click(object sender, EventArgs e)
{
if (b == false)
{
b = true;
button1.Text = "停止";
Thread th = new Thread(PlayGame);
th.IsBackground = true;
th.Name = "新线程";
// th.
th.Start();
}
else//b==true
{
b = false;
button1.Text = "开始";
}
C#/.net学习-13-一个多线程的摇奖winform小程序
最新推荐文章于 2022-09-09 10:21:59 发布
这是一个使用C#/.NET编写的多线程WinForm应用,通过点击按钮启动和停止摇奖过程。摇奖结果会在三个标签上显示随机生成的0到9之间的数字。
摘要由CSDN通过智能技术生成