• 大小: 0.06M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 保存  电子签名  

资源简介

一款基于C#开发的电子签名程序,主要实现了签名的保存,适合初学者使用,可将完成的签名保存到指定位置,可修改对应的画笔颜色、宽度、透明度等

资源截图

代码片段和文件信息

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 电子签名案例DEMO
{
    public partial class Frm_Main : Form
    {
        public Frm_Main()
        {
            InitializeComponent();
        }

        //记录直线或者曲线的对象
        private System.Drawing.Drawing2D.GraphicsPath mousePath = new System.Drawing.Drawing2D.GraphicsPath();
        //画笔透明度
        private int myAlpha = 100;
        //画笔颜色对象
        private Color myUserColor = new Color();
        //画笔宽度
        private int myPenWidth = 3;
        //签名的图片对象
        public Bitmap SavedBitmap;

        private void Form1_Load(object sender E

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2845  2016-08-03 17:13  51Aspx源码必读.txt
     文件         187  2016-08-01 17:39  App.config
     文件        8001  2016-08-01 18:34  Frm_Main.Designer.cs
     文件        5049  2016-08-03 17:12  Frm_Main.cs
     文件        5817  2016-08-01 18:34  Frm_Main.resx
     文件         537  2016-08-01 18:08  Program.cs
     目录           0  2016-08-03 17:07  Properties\
     文件        1376  2016-08-01 17:39  Properties\AssemblyInfo.cs
     文件        2896  2016-08-01 17:39  Properties\Resources.Designer.cs
     文件        5612  2016-08-01 17:39  Properties\Resources.resx
     文件        1109  2016-08-01 17:39  Properties\Settings.Designer.cs
     文件         249  2016-08-01 17:39  Properties\Settings.settings
     目录           0  2016-08-03 17:07  bin\
     目录           0  2016-08-03 17:09  bin\Debug\
     文件       13312  2016-08-03 17:09  bin\Debug\电子签名案例DEMO.exe
     文件         187  2016-08-01 17:39  bin\Debug\电子签名案例DEMO.exe.config
     文件       26112  2016-08-03 17:09  bin\Debug\电子签名案例DEMO.pdb
     文件       22984  2016-08-03 17:10  bin\Debug\电子签名案例DEMO.vshost.exe
     文件         187  2016-08-01 17:39  bin\Debug\电子签名案例DEMO.vshost.exe.config
     文件         490  2012-06-02 22:34  bin\Debug\电子签名案例DEMO.vshost.exe.manifest
     目录           0  2016-08-03 17:13  bin\Release\
     文件        4945  2014-04-30 09:10  from.gif
     目录           0  2016-08-03 17:07  obj\
     目录           0  2016-08-03 17:09  obj\Debug\
     文件         851  2016-08-01 17:40  obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        7152  2016-08-03 17:08  obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2016-08-03 17:13  obj\Debug\TempPE\
     文件           0  2016-08-01 17:39  obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
     文件           0  2016-08-01 17:39  obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
     文件           0  2016-08-01 17:39  obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
     文件         180  2016-08-01 18:34  obj\Debug\电子签名案例DEMO.Frm_Main.resources
............此处省略10个文件信息

评论

共有 条评论