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

资源简介

使用C#开发的一全套画图,线条,椭圆,线性,等功能,vs2019的版本

资源截图

代码片段和文件信息

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

namespace Ex13_47
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        //标识是否正在绘图
        private bool isDrawing = true;
        //绘图时记录鼠标位置
        private Point MouseStartPoint MouseOldPoint;
        //枚举各种绘图工具
        private enum DrawModes
        {
            Pen = 0 Line Ellipse Rectangle Rubber None
        };
        //当前使用工具
        private DrawModes DrawMode = DrawModes.None;
        //进行操作的位图
        private Image MyImg;
        //绘制位图实例对象
        private Graphics graphics;
        //绘图使用颜色
       

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

     文件       1162  2007-08-21 15:03  Properties\AssemblyInfo.cs

     文件       2849  2019-12-11 19:33  Properties\Resources.Designer.cs

     文件       5612  2007-08-21 15:03  Properties\Resources.resx

     文件       1107  2019-12-11 19:33  Properties\Settings.Designer.cs

     文件        249  2007-08-21 15:03  Properties\Settings.settings

     文件       3433  2019-12-11 19:33  Ex13_47.csproj

     文件       1119  2019-12-11 19:33  Ex13_47.sln

    ..A..H.     11264  2009-01-14 11:29  Ex13_47.suo

     文件       7580  2009-01-13 17:01  Form1.cs

     文件      10610  2007-08-21 15:03  Form1.designer.cs

     文件      14288  2007-08-21 15:03  Form1.resx

     文件        466  2007-08-21 15:03  Program.cs

    ..A..H.     22016  2019-12-11 19:34  .vs\Ex13_47\v16\.suo

     文件          0  2019-12-11 19:33  .vs\Ex13_47\v16\Server\sqlite3\db.lock

     文件     548864  2019-12-11 19:34  .vs\Ex13_47\v16\Server\sqlite3\storage.ide

     文件      20480  2019-12-11 19:33  bin\Debug\Ex13_47.exe

     文件      24064  2019-12-11 19:33  bin\Debug\Ex13_47.pdb

     文件       5632  2016-05-04 18:49  bin\Debug\Ex13_47.vshost.exe

     文件        807  2019-12-11 19:33  obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6419  2019-12-11 19:33  obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        507  2019-12-11 19:33  obj\Debug\Ex13_47.csproj.FileListAbsolute.txt

     文件        939  2019-12-11 19:33  obj\Debug\Ex13_47.csproj.GenerateResource.cache

     文件       8089  2019-12-11 19:33  obj\Debug\Ex13_47.csprojAssemblyReference.cache

     文件      20480  2019-12-11 19:33  obj\Debug\Ex13_47.exe

     文件       6402  2019-12-11 19:33  obj\Debug\Ex13_47.Form1.resources

     文件      24064  2019-12-11 19:33  obj\Debug\Ex13_47.pdb

     文件        180  2019-12-11 19:33  obj\Debug\Ex13_47.Properties.Resources.resources

     文件       3584  2019-12-11 19:33  obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件        268  2009-01-14 11:24  obj\Ex13_47.csproj.FileList.txt

     文件        412  2008-09-10 09:43  obj\Ex13_47.csproj.FileListAbsolute.txt

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

评论

共有 条评论