资源简介
c# 生成二维码, 实例,源代码提供,供新人学习
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace bartest
{
public partial class Form1 : Form
{
public DotNetBarcode BarCode;
public Form1()
{
InitializeComponent();
}
private void panel1_Paint(object sender PaintEventArgs e)
{
BarCode.WriteBar(this.textBox1.Text 0 0 this.panel1.Size.Width this.panel1.Size.Height e.Graphics);
}
private void Form1_Load(object sender EventArgs e)
{
BarCode = new DotNetBarcode();
BarCode.Type = DotNetBarcode.Types.QRCode;
}
private void textBox1_TextChanged(object sender EventArgs e)
{
//this.panel1.Refresh();
}
private void button1_Click(object sender EventArgs e)
{
this.panel1.Refresh();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5369 2011-09-27 17:41 bartest-ok\bartest\bartest.csproj
文件 496 2011-09-27 17:36 bartest-ok\bartest\bartest.csproj.user
文件 9216 2014-04-22 22:16 bartest-ok\bartest\bin\Debug\bartest.exe
文件 32256 2014-04-22 22:16 bartest-ok\bartest\bin\Debug\bartest.pdb
文件 11608 2014-04-22 22:18 bartest-ok\bartest\bin\Debug\bartest.vshost.exe
文件 490 2010-03-17 22:39 bartest-ok\bartest\bin\Debug\bartest.vshost.exe.manifest
文件 62464 2011-09-28 10:14 bartest-ok\bartest\bin\Debug\DotNetBarcode.dll
文件 1028 2014-04-22 22:16 bartest-ok\bartest\Form1.cs
文件 3250 2014-04-22 22:16 bartest-ok\bartest\Form1.Designer.cs
文件 5814 2014-04-22 22:16 bartest-ok\bartest\Form1.resx
文件 864 2009-09-01 17:32 bartest-ok\bartest\obj\bartest.csproj.FileListAbsolute.txt
文件 2059 2014-04-22 22:18 bartest-ok\bartest\obj\Debug\bartest.csproj.FileListAbsolute.txt
文件 774 2009-09-01 17:34 bartest-ok\bartest\obj\Debug\bartest.csproj.GenerateResource.Cache
文件 9216 2014-04-22 22:16 bartest-ok\bartest\obj\Debug\bartest.exe
文件 180 2014-04-22 22:16 bartest-ok\bartest\obj\Debug\bartest.Form1.resources
文件 32256 2014-04-22 22:16 bartest-ok\bartest\obj\Debug\bartest.pdb
文件 180 2014-04-22 22:16 bartest-ok\bartest\obj\Debug\bartest.Properties.Resources.resources
文件 5480 2014-04-22 22:16 bartest-ok\bartest\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 390 2014-04-22 22:16 bartest-ok\bartest\obj\Debug\GenerateResource-ResGen.read.1.tlog
文件 546 2014-04-22 22:16 bartest-ok\bartest\obj\Debug\GenerateResource-ResGen.write.1.tlog
文件 9554 2014-04-22 22:10 bartest-ok\bartest\obj\Debug\ResolveAssemblyReference.cache
文件 4608 2011-09-27 17:18 bartest-ok\bartest\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
文件 466 2009-09-01 17:18 bartest-ok\bartest\Program.cs
文件 1186 2009-09-01 17:18 bartest-ok\bartest\Properties\AssemblyInfo.cs
文件 2852 2011-09-27 17:18 bartest-ok\bartest\Properties\Resources.Designer.cs
文件 5612 2009-09-01 17:18 bartest-ok\bartest\Properties\Resources.resx
文件 1105 2011-09-27 17:18 bartest-ok\bartest\Properties\Settings.Designer.cs
文件 249 2009-09-01 17:18 bartest-ok\bartest\Properties\Settings.settings
文件 911 2011-09-27 17:18 bartest-ok\bartest.sln
..A..H. 16896 2014-04-22 22:18 bartest-ok\bartest.suo
............此处省略12个文件信息
- 上一篇:基本WPF的缩略图
- 下一篇:c# winform写的一个颜色拾取工具(原创+源码)
相关资源
- c# winform写的一个颜色拾取工具(原创
- 鼠标画框矩形裁剪图片工具含源码及
- C#进化计算:遗传算法源代码
- C#车牌识别
- c# socket(udp/tcp) demo
- c# http接口设计及调用demo
- C#网络五子棋server&client
- C#版本可停靠工具栏实现代码
- c#简易 数字键盘/手机键盘button控件与
- C#截屏插件 DLL
- Windows任务管理器
- C#从相机获取图像
- C# winhttp 封装类
- C#调用WebService实现天气预报
- 计算多边形面积C#代码
- vs2010-c#读取txt文件至DataTable经过处理
- C#之系统API详解教程
- FAUNC FOCAS C#
- c# 递归实现zTree
- C# Winform 发票信息修改 文本内容修改
- C# Winform 左侧菜单右边显示、子窗体显
- C#连接数据库实现删改查代码
- 聊天控件源码_支持动态表情(C#)
- C#源码图片验证码识别
- 异步串行串口通讯C#RS232
- C#流程图编程演示(用GDI+实现鼠标绘
- c# 用SAPI实现语音识别及文本转换的详
- C#图书管理系统全源代码!
- 用C#实现跳马问题程序
- C#取得SysListView32所有行(包括列表头
评论
共有 条评论