From 08ec2e2e781c4215c8458c67192903b357faa7f8 Mon Sep 17 00:00:00 2001 From: editor <@51Aspx.com> Date: Wed, 5 Jun 2024 11:08:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 51Aspx源码必读.txt | 54 +++++++++++++++++++ App.config | 6 +++ Encoder.cs | 15 ++++++ Form1.Designer.cs | 15 ++++++ Form1.cs | 15 ++++++ Form1.resx | 15 ++++++ Program.cs | 15 ++++++ Properties/AssemblyInfo.cs | 15 ++++++ Properties/Resources.Designer.cs | 15 ++++++ Properties/Resources.resx | 15 ++++++ Properties/Settings.Designer.cs | 15 ++++++ WindowsFormsApp13.csproj | 15 ++++++ packages.config | 5 ++ .../useSharedDesignerContext.txt | 0 .../System.Drawing.Common.4.5.0/version.txt | 1 + 15 files changed, 216 insertions(+) create mode 100644 51Aspx源码必读.txt create mode 100644 App.config create mode 100644 Encoder.cs create mode 100644 Form1.Designer.cs create mode 100644 Form1.cs create mode 100644 Form1.resx create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 WindowsFormsApp13.csproj create mode 100644 packages.config create mode 100644 packages/System.Drawing.Common.4.5.0/useSharedDesignerContext.txt create mode 100644 packages/System.Drawing.Common.4.5.0/version.txt diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..5eac498 --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,54 @@ +WINFORM定制二维码生成器 + + + 一、源码描述 + + + Winform定制二维码生成器 + + + 环境:VS2022 Winform + + + + + + 二、功能介绍 + + + 二维码中间那个图片位于可执行目录debug下,名为demo.jpg,使用它放在生成的二维码中间,可以替换。 + + + 运行后,填写版本、像素、图标尺寸、图标边线、白边、文本信息,点击生成按钮即可生成二维码,可保存在本地中。 + + + + + + 三、注意事项 + + + ctrl+F5运行即可。 + + + +作者: coderbest + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/CustomQRCodeGenerator +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/App.config b/App.config new file mode 100644 index 0000000..ef58ce2 --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Encoder.cs b/Encoder.cs new file mode 100644 index 0000000..bb08d17 --- /dev/null +++ b/Encoder.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Drawing; + +namespace chestnut_qrcode +{ + public class Encoder + { + /// + /// 生成二维码 + /// + /// 信息 diff --git a/Form1.Designer.cs b/Form1.Designer.cs new file mode 100644 index 0000000..9b1ac74 --- /dev/null +++ b/Form1.Designer.cs @@ -0,0 +1,15 @@ +namespace WindowsFormsApp13 +{ + partial class Form1 + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { diff --git a/Form1.cs b/Form1.cs new file mode 100644 index 0000000..419e48e --- /dev/null +++ b/Form1.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WindowsFormsApp13 +{ + public partial class Form1 : Form + { + public Form1() diff --git a/Form1.resx b/Form1.resx new file mode 100644 index 0000000..151e799 --- /dev/null +++ b/Form1.resx @@ -0,0 +1,15 @@ + + +