91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 53KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2021-06-15
  • 語言: C#
  • 標簽: C#驗證碼??

資源簡介

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

評論

共有 條評論