• 大小: 37KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-11
  • 语言: C#
  • 标签: c#  橡皮擦  画图  画线    

资源简介

C#画图,画线,画圆,橡皮擦 C#画图,画线,画圆,橡皮擦

资源截图

代码片段和文件信息

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 = false;
        //绘图时记录鼠标位置
        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;
        //绘图使用颜色
      

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

     文件      32768  2007-08-21 15:03  Ex13_47\bin\Debug\Ex13_47.exe

     文件      26112  2007-08-21 15:03  Ex13_47\bin\Debug\Ex13_47.pdb

     文件       5632  2007-08-21 15:03  Ex13_47\bin\Debug\Ex13_47.vshost.exe

     文件       3221  2007-08-21 15:03  Ex13_47\Ex13_47.csproj

     文件       7581  2007-08-21 15:03  Ex13_47\Form1.cs

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

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

     文件        842  2007-08-21 15:03  Ex13_47\obj\Debug\Ex13_47.csproj.GenerateResource.Cache

     文件      32768  2007-08-21 15:03  Ex13_47\obj\Debug\Ex13_47.exe

     文件       6402  2007-08-21 15:03  Ex13_47\obj\Debug\Ex13_47.Form1.resources

     文件      26112  2007-08-21 15:03  Ex13_47\obj\Debug\Ex13_47.pdb

     文件        180  2007-08-21 15:03  Ex13_47\obj\Debug\Ex13_47.Properties.Resources.resources

     文件        268  2007-08-21 15:03  Ex13_47\obj\Ex13_47.csproj.FileList.txt

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

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

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

     文件       2868  2007-08-21 15:03  Ex13_47\Properties\Resources.Designer.cs

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

     文件       1090  2007-08-21 15:03  Ex13_47\Properties\Settings.Designer.cs

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

     目录          0  2008-04-14 13:08  Ex13_47\obj\Debug\Refactor

     目录          0  2008-04-14 13:08  Ex13_47\obj\Debug\TempPE

     目录          0  2008-04-14 13:08  Ex13_47\bin\Debug

     目录          0  2008-04-14 13:08  Ex13_47\obj\Debug

     目录          0  2008-04-14 13:08  Ex13_47\bin

     目录          0  2008-09-10 09:36  Ex13_47\obj

     目录          0  2008-04-14 13:08  Ex13_47\Properties

     目录          0  2008-04-14 13:08  Ex13_47

----------- ---------  ---------- -----  ----

               178643                    28

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

评论

共有 条评论