资源简介
vs2015开发,验证码生成是单独的类文件。在压缩包里面有。直接拷贝复制到项目中就可以使用。使用方式看代码。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 验证码
{
public partial class Form1 : Form
{
ValidCode code = new ValidCode(6 ValidCode.CodeType.Numbers);//实例化ValidCode类
public Form1()
{
InitializeComponent();
label1.Visible = false;
Bitmap bitmap = new Bitmap(code.CreateCheckCodeImage());
pictureBox1.Image = bitmap;
}
private void button1_Click(object sender EventArgs e)
{
if (textBox1.Text == code.CheckCode)
{
label1.Visible = true;
label1.ForeColor = Color.Green;
label1.Text = “验证码正确“;
}
else
{
label1.Visible = true;
label1.ForeColor = Color.Red;
label1.Text = “验证码错误“;
textBox1.Clear();
textBox1.Focus();
}
}
private void pictureBox1_Click(object sender EventArgs e)
{
Bitmap bitmap = new Bitmap(code.CreateCheckCodeImage());
pictureBox1.Image = bitmap;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-05-17 10:04 验证码\
目录 0 2018-05-16 17:37 验证码\bin\
目录 0 2018-05-17 10:04 验证码\bin\Debug\
文件 12288 2018-05-17 10:04 验证码\bin\Debug\验证码.exe
文件 26112 2018-05-17 10:04 验证码\bin\Debug\验证码.pdb
文件 22688 2018-05-17 10:04 验证码\bin\Debug\验证码.vshost.exe
文件 490 2015-10-22 09:54 验证码\bin\Debug\验证码.vshost.exe.manifest
文件 1387 2018-05-17 10:04 验证码\Form1.cs
文件 3913 2018-05-17 09:59 验证码\Form1.Designer.cs
文件 5817 2018-05-17 09:59 验证码\Form1.resx
目录 0 2018-05-16 17:37 验证码\obj\
目录 0 2018-05-17 10:04 验证码\obj\Debug\
文件 864 2018-05-17 09:57 验证码\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6830 2018-05-16 17:38 验证码\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
目录 0 2018-05-16 17:37 验证码\obj\Debug\TempPE\
文件 471 2018-05-17 10:04 验证码\obj\Debug\验证码.csproj.FileListAbsolute.txt
文件 1012 2018-05-17 10:04 验证码\obj\Debug\验证码.csproj.GenerateResource.Cache
文件 12288 2018-05-17 10:04 验证码\obj\Debug\验证码.exe
文件 180 2018-05-17 10:04 验证码\obj\Debug\验证码.Form1.resources
文件 26112 2018-05-17 10:04 验证码\obj\Debug\验证码.pdb
文件 180 2018-05-17 10:04 验证码\obj\Debug\验证码.Properties.Resources.resources
文件 490 2018-05-16 17:37 验证码\Program.cs
目录 0 2018-05-16 17:37 验证码\Properties\
文件 1344 2018-05-16 17:37 验证码\Properties\AssemblyInfo.cs
文件 2831 2018-05-16 17:37 验证码\Properties\Resources.Designer.cs
文件 5612 2018-05-16 17:37 验证码\Properties\Resources.resx
文件 1096 2018-05-16 17:37 验证码\Properties\Settings.Designer.cs
文件 249 2018-05-16 17:37 验证码\Properties\Settings.settings
文件 7849 2018-05-17 09:56 验证码\ValidCode.cs
文件 3772 2018-05-16 17:44 验证码\验证码.csproj
- 上一篇:C# winfrom窗体显示百度地图
- 下一篇:C# 实现贪吃蛇小游戏的设计编写
评论
共有 条评论