基本信息
源码名称:C#抽奖程序 源码(入门级)
源码大小:3.66M
文件格式:.rar
开发语言:C#
更新时间:2016-12-27
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
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 抽奖
{
public partial class Form1 : Form
{
bool ww = false ;
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
Random re = new Random();
//输出随机变量,其中10000为最小值,99999为最大值
this.label1.Text = re.Next(100000, 999999).ToString();
}
private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Space)
{
this.label3.Text = "抽奖中···,敬请期待···";
this.timer1.Enabled = !ww;
this.label1.Visible = true;
ww = !ww;
}
if (timer1.Enabled == false)
{
this.label1.Hide();
this.label3.Text ="";
this.label2.Text = "恭喜你:" this.label1.Text "获得今天的大奖";
}
else
this.label2.Text = "";
}
}
}