基本信息
源码名称:C#画图工具DrawTools
源码大小:0.07M
文件格式:.zip
开发语言:C#
更新时间:2022-11-13
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍

C#画图工具DrawTools

DrawTools示例告诉你怎么创建一个Windows窗体,来使用鼠标和画图工具在窗体上的可用区域画图。这个示例中实现了以下画图工具:矩形,椭圆形,直线和铅笔。其中有一些众所周知的技术来创建这个程序,比如说:鼠标的交互,无闪烁画图,实现了画图和工具选择,物体选择,控制物体的Z轴次序,等等。MFC开发者可以从DRAWCLI.这个MFC示例中了解到所有这些特性。DrawTools这个C#程序复制了一些DRAWCLI的功能,并且在这个例子中使用了一些设计决定。


.
├── DrawTools-master
│   ├── DocToolkit
│   │   ├── DocManager.cs
│   │   ├── DocToolkit.csproj
│   │   ├── DragDropManager.cs
│   │   ├── MruManager.cs
│   │   ├── PersistWindowState.cs
│   │   └── Properties
│   │       └── AssemblyInfo.cs
│   ├── DrawTools
│   │   ├── Command.cs
│   │   ├── CommandAdd.cs
│   │   ├── CommandChangeState.cs
│   │   ├── CommandDelete.cs
│   │   ├── CommandDeleteAll.cs
│   │   ├── DrawArea.Designer.cs
│   │   ├── DrawArea.cs
│   │   ├── DrawArea.resx
│   │   ├── DrawEllipse.cs
│   │   ├── DrawLine.cs
│   │   ├── DrawObject.cs
│   │   ├── DrawPolygon.cs
│   │   ├── DrawRectangle.cs
│   │   ├── DrawTools.csproj
│   │   ├── DrawTriangle.cs
│   │   ├── Ellipse.cur
│   │   ├── FrmAbout.Designer.cs
│   │   ├── FrmAbout.cs
│   │   ├── FrmAbout.resx
│   │   ├── GraphicsList.cs
│   │   ├── GraphicsProperties.cs
│   │   ├── Images
│   │   │   ├── App.ico
│   │   │   ├── Ellipse.cur
│   │   │   ├── Line.cur
│   │   │   ├── Pencil.cur
│   │   │   ├── PolyHandle.cur
│   │   │   ├── Rectangle.cur
│   │   │   ├── about.bmp
│   │   │   ├── ellipse.bmp
│   │   │   ├── line.bmp
│   │   │   ├── new.bmp
│   │   │   ├── open.bmp
│   │   │   ├── pencil.bmp
│   │   │   ├── pointer.bmp
│   │   │   ├── rectangle.bmp
│   │   │   ├── redo.bmp
│   │   │   ├── save.bmp
│   │   │   ├── triangle.bmp
│   │   │   └── undo.bmp
│   │   ├── Line.cur
│   │   ├── MainForm.Designer.cs
│   │   ├── MainForm.cs
│   │   ├── MainForm.resx
│   │   ├── Pencil.cur
│   │   ├── PolyHandle.cur
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── PropertiesDialog.Designer.cs
│   │   ├── PropertiesDialog.cs
│   │   ├── PropertiesDialog.resx
│   │   ├── Rectangle.cur
│   │   ├── Tool.cs
│   │   ├── ToolEllipse.cs
│   │   ├── ToolLine.cs
│   │   ├── ToolObject.cs
│   │   ├── ToolPointer.cs
│   │   ├── ToolPolygon.cs
│   │   ├── ToolRectangle.cs
│   │   ├── ToolTriangle.cs
│   │   ├── Triangle.cur
│   │   └── UndoManager.cs
│   ├── DrawTools2005.sln
│   └── README
└── 好例子网_DrawTools-master.zip

6 directories, 74 files