• 大小: 0.09M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 画板实例  画图实例  

资源简介

该实例是仿画板的实例,里面的代码精致,代码的可移植性强,希望能给做这方面的工程的人一些借鉴,给大家带来帮助!

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;

namespace GDIDemo
{
    public partial class Form1 : Form
    {
        Bitmap originImg;
        Image finishImg;
        Graphics g;
        DrawType dType;
        Point StartPoint EndPoint FontPoint;
        Pen p = new Pen(Color.Black 1);
        bool IsDraw;
        Font font;
        Rectangle FontRect;
        ///   
        /// 画笔颜色  
        /// 
  
        Color DrawColor
        {
            get { return p.Color; }
            set { p.Color = value; }
        }
        ///   
        /// 画笔宽度  
        /// 
  
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      17408  2015-06-30 11:15  GDIDemo\bin\Debug\GDIDemo.exe

     文件      34304  2015-06-30 11:15  GDIDemo\bin\Debug\GDIDemo.pdb

     文件      21472  2017-10-09 11:33  GDIDemo\bin\Debug\GDIDemo.vshost.exe

     文件        490  2012-06-06 02:06  GDIDemo\bin\Debug\GDIDemo.vshost.exe.manifest

     文件      11529  2015-06-30 11:15  GDIDemo\Form1.cs

     文件      11691  2015-06-30 11:15  GDIDemo\Form1.Designer.cs

     文件       5817  2015-06-30 11:15  GDIDemo\Form1.resx

     文件       3421  2015-06-30 11:03  GDIDemo\GDIDemo.csproj

     文件      48366  2017-05-02 17:47  GDIDemo\GDIDemo.rar

     文件       3584  2017-05-02 17:49  GDIDemo\GDIDemo.v11.suo

     文件        789  2017-10-09 11:33  GDIDemo\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6137  2017-10-09 11:33  GDIDemo\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       1034  2017-10-09 11:33  GDIDemo\obj\x86\Debug\GDIDemo.csproj.FileListAbsolute.txt

     文件        975  2015-06-30 11:15  GDIDemo\obj\x86\Debug\GDIDemo.csproj.GenerateResource.Cache

     文件      17408  2015-06-30 11:15  GDIDemo\obj\x86\Debug\GDIDemo.exe

     文件        180  2015-06-30 11:15  GDIDemo\obj\x86\Debug\GDIDemo.Form1.resources

     文件      34304  2015-06-30 11:15  GDIDemo\obj\x86\Debug\GDIDemo.pdb

     文件        180  2015-06-30 11:11  GDIDemo\obj\x86\Debug\GDIDemo.Properties.Resources.resources

     文件        468  2015-06-30 10:53  GDIDemo\Program.cs

     文件       1364  2015-06-30 10:53  GDIDemo\Properties\AssemblyInfo.cs

     文件       2866  2015-06-30 10:53  GDIDemo\Properties\Resources.Designer.cs

     文件       5612  2015-06-30 10:53  GDIDemo\Properties\Resources.resx

     文件       1094  2015-06-30 10:53  GDIDemo\Properties\Settings.Designer.cs

     文件        249  2015-06-30 10:53  GDIDemo\Properties\Settings.settings

     目录          0  2015-06-30 10:53  GDIDemo\obj\x86\Debug\TempPE

     目录          0  2017-10-09 11:33  GDIDemo\obj\x86\Debug

     目录          0  2015-06-30 11:11  GDIDemo\bin\Debug

     目录          0  2015-06-30 10:53  GDIDemo\obj\x86

     目录          0  2015-06-30 10:53  GDIDemo\bin

     目录          0  2015-06-30 10:53  GDIDemo\obj

............此处省略5个文件信息

评论

共有 条评论

相关资源