在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 用DotNET开发交互式CAD系统(PDF+光盘).rar

用DotNET开发交互式CAD系统(PDF+光盘).rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:24.94M
  • 下载次数:21
  • 浏览次数:120
  • 发布时间:2021-12-11
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
用DotNET开发交互式CAD系统(PDF+光盘)
【实例截图】
【核心代码】
4744302543442602124.rar
├── 用VB_NET和VC#_NET开发交互式CAD系统.pdf
└── 随书光盘
├── ch01
│   ├── readme.txt
│   ├── VB
│   │   ├── Para
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Para.sln
│   │   │   ├── Para.suo
│   │   │   ├── Para.vbproj
│   │   │   └── Para.vbproj.user
│   │   └── Variable
│   │   ├── AssemblyInfo.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── Variable.sln
│   │   ├── Variable.suo
│   │   ├── Variable.vbproj
│   │   └── Variable.vbproj.user
│   └── VC#
│   ├── Para
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Para.csproj
│   │   ├── Para.csproj.user
│   │   ├── Para.sln
│   │   └── Para.suo
│   └── Variable
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── Variable.csproj
│   ├── Variable.csproj.user
│   ├── Variable.sln
│   └── Variable.suo
├── ch02
│   ├── readme.txt
│   ├── VB
│   │   ├── base
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── base.sln
│   │   │   ├── base.suo
│   │   │   ├── base.vbproj
│   │   │   ├── base.vbproj.user
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   └── Position.vb
│   │   ├── Inherit
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CGElement.vb
│   │   │   ├── CLine.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Inherit.sln
│   │   │   ├── Inherit.suo
│   │   │   ├── Inherit.vbproj
│   │   │   └── Inherit.vbproj.user
│   │   ├── Interface
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CLine.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── IGElement.vb
│   │   │   ├── Interface.sln
│   │   │   ├── Interface.suo
│   │   │   ├── Interface.vbproj
│   │   │   └── Interface.vbproj.user
│   │   ├── MustInherit
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CGElement.vb
│   │   │   ├── CLine.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Inherit.sln
│   │   │   ├── Inherit.suo
│   │   │   ├── Inherit.vbproj.user
│   │   │   ├── MustInherit.sln
│   │   │   ├── MustInherit.suo
│   │   │   ├── MustInherit.vbproj
│   │   │   └── MustInherit.vbproj.user
│   │   ├── Polynom-Inherit
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CGElement.vb
│   │   │   ├── CLine.vb
│   │   │   ├── CRectangle.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Polynom.sln
│   │   │   ├── Polynom.suo
│   │   │   ├── Polynom.vbproj
│   │   │   └── Polynom.vbproj.user
│   │   ├── Polynom-Interface
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CLine.vb
│   │   │   ├── CRectangle.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── IGElement.vb
│   │   │   ├── Polynom-Interface.sln
│   │   │   ├── Polynom-Interface.suo
│   │   │   ├── Polynom-Interface.vbproj
│   │   │   └── Polynom-Interface.vbproj.user
│   │   └── Shadow
│   │   ├── AssemblyInfo.vb
│   │   ├── CBase.vb
│   │   ├── CDerive.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── Shadow.sln
│   │   ├── Shadow.suo
│   │   ├── Shadow.vbproj
│   │   └── Shadow.vbproj.user
│   └── VC#
│   ├── abstract
│   │   ├── abstract.csproj
│   │   ├── abstract.csproj.user
│   │   ├── abstract.sln
│   │   ├── abstract.suo
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CGElement.cs
│   │   ├── CLine.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Inherit.csproj.user
│   │   ├── Inherit.sln
│   │   └── Inherit.suo
│   ├── base
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── base.csproj
│   │   ├── base.csproj.user
│   │   ├── base.sln
│   │   ├── base.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   └── Position.cs
│   ├── Inherit
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CGElement.cs
│   │   ├── CLine.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Inherit.csproj
│   │   ├── Inherit.csproj.user
│   │   ├── Inherit.sln
│   │   └── Inherit.suo
│   ├── Interface
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CLine.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── IGElement.cs
│   │   ├── Interface.csproj
│   │   ├── Interface.csproj.user
│   │   ├── Interface.sln
│   │   └── Interface.suo
│   ├── new
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CBase.cs
│   │   ├── CDerive.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── new.csproj
│   │   ├── new.csproj.user
│   │   ├── new.sln
│   │   └── new.suo
│   ├── Polinom
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CGElement.cs
│   │   ├── CLine.cs
│   │   ├── CRectangle.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Polinom-Inherit.csproj
│   │   ├── Polinom-Inherit.csproj.user
│   │   ├── Polinom-Inherit.sln
│   │   ├── Polinom-Inherit.suo
│   │   ├── Polinom.sln
│   │   └── Polinom.suo
│   ├── Polinom-Interface
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CLine.cs
│   │   ├── CRectangle.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── IGElement.cs
│   │   ├── Polinom-Inherit.csproj.user
│   │   ├── Polinom-Interface.csproj
│   │   ├── Polinom-Interface.csproj.user
│   │   ├── Polinom-Interface.sln
│   │   ├── Polinom-Interface.suo
│   │   ├── Polinom.sln
│   │   └── Polinom.suo
│   └── shadow
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── CBase.cs
│   ├── CDerive.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── shadow.csproj
│   ├── shadow.csproj.user
│   ├── shadow.sln
│   └── shadow.suo
├── ch03
│   ├── readme.txt
│   ├── VB
│   │   ├── Alpha混色
│   │   │   ├── Alpha混色.sln
│   │   │   ├── Alpha混色.suo
│   │   │   ├── Alpha混色.vbproj
│   │   │   ├── Alpha混色.vbproj.user
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── API绘图
│   │   │   ├── API绘图.sln
│   │   │   ├── API绘图.suo
│   │   │   ├── API绘图.vbproj
│   │   │   ├── API绘图.vbproj.user
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── Graph
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Graph.sln
│   │   │   ├── Graph.suo
│   │   │   ├── Graph.vbproj
│   │   │   └── Graph.vbproj.user
│   │   ├── 全局坐标
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 全局坐标.sln
│   │   │   ├── 全局坐标.suo
│   │   │   ├── 全局坐标.vbproj
│   │   │   └── 全局坐标.vbproj.user
│   │   ├── 区域
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 区域.sln
│   │   │   ├── 区域.suo
│   │   │   ├── 区域.vbproj
│   │   │   └── 区域.vbproj.user
│   │   ├── 反走样
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 反走样.sln
│   │   │   ├── 反走样.suo
│   │   │   ├── 反走样.vbproj
│   │   │   └── 反走样.vbproj.user
│   │   ├── 图元变换
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Module1.vb
│   │   │   ├── 全局变换.sln
│   │   │   ├── 全局变换.suo
│   │   │   ├── 全局变换.vbproj
│   │   │   ├── 全局变换.vbproj.user
│   │   │   ├── 图元变换.sln
│   │   │   └── 图元变换.suo
│   │   ├── 局部坐标
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 局部坐标.sln
│   │   │   ├── 局部坐标.suo
│   │   │   ├── 局部坐标.vbproj
│   │   │   └── 局部坐标.vbproj.user
│   │   ├── 文本
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 文本.sln
│   │   │   ├── 文本.suo
│   │   │   ├── 文本.vbproj
│   │   │   └── 文本.vbproj.user
│   │   ├── 渐变
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 渐变.sln
│   │   │   ├── 渐变.suo
│   │   │   ├── 渐变.vbproj
│   │   │   └── 渐变.vbproj.user
│   │   ├── 绘图
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 绘图.sln
│   │   │   ├── 绘图.suo
│   │   │   ├── 绘图.vbproj
│   │   │   └── 绘图.vbproj.user
│   │   └── 路径
│   │   ├── AssemblyInfo.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── 路径.sln
│   │   ├── 路径.suo
│   │   ├── 路径.vbproj
│   │   └── 路径.vbproj.user
│   └── VC#
│   ├── Alpha混色
│   │   ├── Alpha混色.csproj
│   │   ├── Alpha混色.csproj.user
│   │   ├── Alpha混色.sln
│   │   ├── Alpha混色.suo
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── API绘图
│   │   ├── API.csproj
│   │   ├── API.csproj.user
│   │   ├── API.sln
│   │   ├── API.suo
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── Graph
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Graph.csproj
│   │   ├── Graph.csproj.user
│   │   ├── Graph.sln
│   │   └── Graph.suo
│   ├── 全局坐标
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 全局坐标.csproj
│   │   ├── 全局坐标.csproj.user
│   │   ├── 全局坐标.sln
│   │   └── 全局坐标.suo
│   ├── 区域
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 区域.csproj
│   │   ├── 区域.csproj.user
│   │   ├── 区域.sln
│   │   └── 区域.suo
│   ├── 反走样
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 反走样.csproj
│   │   ├── 反走样.csproj.user
│   │   ├── 反走样.sln
│   │   └── 反走样.suo
│   ├── 图元变换
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 图元变换.csproj
│   │   ├── 图元变换.csproj.user
│   │   ├── 图元变换.sln
│   │   └── 图元变换.suo
│   ├── 局部坐标
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 局部坐标.csproj
│   │   ├── 局部坐标.csproj.user
│   │   ├── 局部坐标.sln
│   │   └── 局部坐标.suo
│   ├── 文本
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 文本.csproj
│   │   ├── 文本.csproj.user
│   │   ├── 文本.sln
│   │   └── 文本.suo
│   ├── 渐变
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 渐变.csproj
│   │   ├── 渐变.csproj.user
│   │   ├── 渐变.sln
│   │   └── 渐变.suo
│   ├── 绘图
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 绘图.csproj
│   │   ├── 绘图.csproj.user
│   │   ├── 绘图.sln
│   │   └── 绘图.suo
│   └── 路径
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── 路径.csproj
│   ├── 路径.csproj.user
│   ├── 路径.sln
│   └── 路径.suo
├── ch04
│   ├── readme.txt
│   ├── VB
│   │   ├── MouseEvent
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── MouseEvent.sln
│   │   │   ├── MouseEvent.suo
│   │   │   ├── MouseEvent.vbproj
│   │   │   └── MouseEvent.vbproj.user
│   │   └── 橡皮线
│   │   ├── AssemblyInfo.vb
│   │   ├── DrawLine.sln
│   │   ├── DrawLine.suo
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── 橡皮线.sln
│   │   ├── 橡皮线.suo
│   │   ├── 橡皮线.vbproj
│   │   └── 橡皮线.vbproj.user
│   └── VC#
│   ├── MouseEvent
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── MouseEvent.csproj
│   │   ├── MouseEvent.csproj.user
│   │   ├── MouseEvent.sln
│   │   └── MouseEvent.suo
│   └── 橡皮线
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── 橡皮线.csproj
│   ├── 橡皮线.csproj.user
│   ├── 橡皮线.sln
│   └── 橡皮线.suo
├── ch06
│   ├── readme.txt
│   ├── VB
│   │   └── VBNET_CAD-1
│   │   ├── app.config
│   │   ├── AssemblyInfo.vb
│   │   ├── CAD-Net.sln
│   │   ├── CAD-Net.suo
│   │   ├── CArc.vb
│   │   ├── CBox.vb
│   │   ├── CCircle.vb
│   │   ├── CCreateArc.vb
│   │   ├── CCreateCircle.vb
│   │   ├── CCreateLine.vb
│   │   ├── CCreateRectangle.vb
│   │   ├── CCreateText.vb
│   │   ├── CGElement.vb
│   │   ├── CLine.vb
│   │   ├── CRectangle.vb
│   │   ├── CText.vb
│   │   ├── DrawMain.resx
│   │   ├── DrawMain.vb
│   │   ├── ICommand.vb
│   │   ├── Module1.vb
│   │   ├── NET_CAD.sln
│   │   ├── NET_CAD.suo
│   │   ├── NET_CAD.vbproj
│   │   ├── NET_CAD.vbproj.user
│   │   ├── ve-8D.tmp
│   │   ├── ve-E.tmp
│   │   └── Win32API.vb
│   └── VC#
│   └── VC#NET_CAD-1
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── cad.CAD
│   ├── CArc.cs
│   ├── CBox.cs
│   ├── CCircle.cs
│   ├── CCreateArc.cs
│   ├── CCreateCircle.cs
│   ├── CCreateLine.cs
│   ├── CCreateRectangle.cs
│   ├── CCreateText.cs
│   ├── CGElement.cs
│   ├── CLine.cs
│   ├── Common.cs
│   ├── CRectangle.cs
│   ├── CText.cs
│   ├── Font.cs
│   ├── Font.resx
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── ICommand.cs
│   ├── Text.cs
│   ├── Text.resx
│   ├── VCSharp.csproj
│   ├── VCSharp.csproj.user
│   ├── VCSharp.sln
│   ├── VCSharp.suo
│   └── Win32API.cs
├── ch07
│   ├── readme.txt
│   ├── VB
│   │   └── VBNET_CAD-2
│   │   ├── app.config
│   │   ├── AssemblyInfo.vb
│   │   ├── CAD-Net.sln
│   │   ├── CAD-Net.suo
│   │   ├── CArc.vb
│   │   ├── CBox.vb
│   │   ├── CCircle.vb
│   │   ├── CCreateArc.vb
│   │   ├── CCreateCircle.vb
│   │   ├── CCreateLine.vb
│   │   ├── CCreateRectangle.vb
│   │   ├── CCreateText.vb
│   │   ├── CGElement.vb
│   │   ├── CLine.vb
│   │   ├── CRectangle.vb
│   │   ├── CSelect.vb
│   │   ├── CText.vb
│   │   ├── DrawMain.resx
│   │   ├── DrawMain.vb
│   │   ├── ICommand.vb
│   │   ├── Module1.vb
│   │   ├── NET_CAD.sln
│   │   ├── NET_CAD.suo
│   │   ├── NET_CAD.vbproj
│   │   ├── NET_CAD.vbproj.user
│   │   ├── ve-8D.tmp
│   │   ├── ve-E.tmp
│   │   └── Win32API.vb
│   └── VC#
│   └── VC#NET_CAD-2
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── cad.CAD
│   ├── CArc.cs
│   ├── CBox.cs
│   ├── CCircle.cs
│   ├── CCreateArc.cs
│   ├── CCreateCircle.cs
│   ├── CCreateLine.cs
│   ├── CCreateRectangle.cs
│   ├── CCreateText.cs
│   ├── CGElement.cs
│   ├── CLine.cs
│   ├── Common.cs
│   ├── CRectangle.cs
│   ├── CSelect.cs
│   ├── CText.cs
│   ├── Font.cs
│   ├── Font.resx
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── ICommand.cs
│   ├── Text.cs
│   ├── Text.resx
│   ├── VCSharp.csproj
│   ├── VCSharp.csproj.user
│   ├── VCSharp.sln
│   ├── VCSharp.suo
│   └── Win32API.cs
├── ch08
│   ├── readme.txt
│   ├── VB
│   │   └── VBNET_CAD-3
│   │   ├── app.config
│   │   ├── AssemblyInfo.vb
│   │   ├── CAD-Net.sln
│   │   ├── CAD-Net.suo
│   │   ├── CArc.vb
│   │   ├── CBox.vb
│   │   ├── CCircle.vb
│   │   ├── CCreateArc.vb
│   │   ├── CCreateCircle.vb
│   │   ├── CCreateLine.vb
│   │   ├── CCreateRectangle.vb
│   │   ├── CCreateText.vb
│   │   ├── CGElement.vb
│   │   ├── CLine.vb
│   │   ├── CMirror.vb
│   │   ├── CMove.vb
│   │   ├── CRectangle.vb
│   │   ├── CRotate.vb
│   │   ├── CSelect.vb
│   │   ├── CText.vb
│   │   ├── DrawMain.resx
│   │   ├── DrawMain.vb
│   │   ├── ICommand.vb
│   │   ├── Module1.vb
│   │   ├── NET_CAD.sln
│   │   ├── NET_CAD.suo
│   │   ├── NET_CAD.vbproj
│   │   ├── NET_CAD.vbproj.user
│   │   ├── ve-8D.tmp
│   │   ├── ve-E.tmp
│   │   └── Win32API.vb
│   └── VC#
│   └── VC#NET_CAD-3
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── cad.CAD
│   ├── CArc.cs
│   ├── CBox.cs
│   ├── CCircle.cs
│   ├── CCreateArc.cs
│   ├── CCreateCircle.cs
│   ├── CCreateLine.cs
│   ├── CCreateRectangle.cs
│   ├── CCreateText.cs
│   ├── CGElement.cs
│   ├── CLine.cs
│   ├── CMirror.cs
│   ├── CMove.cs
│   ├── Common.cs
│   ├── CRectangle.cs
│   ├── CRotate.cs
│   ├── CSelect.cs
│   ├── CText.cs
│   ├── Font.cs
│   ├── Font.resx
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── ICommand.cs
│   ├── Text.cs
│   ├── Text.resx
│   ├── VCSharp.csproj
│   ├── VCSharp.csproj.user
│   ├── VCSharp.sln
│   ├── VCSharp.suo
│   └── Win32API.cs
├── ch09
│   ├── readme.txt
│   ├── VB
│   │   ├── Clone
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Clone.sln
│   │   │   ├── Clone.suo
│   │   │   ├── Clone.vbproj
│   │   │   ├── Clone.vbproj.user
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── ControlPoints
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── ControlPoints.sln
│   │   │   ├── ControlPoints.suo
│   │   │   ├── ControlPoints.vbproj
│   │   │   ├── ControlPoints.vbproj.user
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── Flatten1
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Flatten1.sln
│   │   │   ├── Flatten1.suo
│   │   │   ├── Flatten1.vbproj
│   │   │   ├── Flatten1.vbproj.user
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── GetBounds & PathPoints
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── GetBound.sln
│   │   │   ├── GetBound.suo
│   │   │   ├── GetBound.vbproj
│   │   │   └── GetBound.vbproj.user
│   │   ├── IsOutlineVisible
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Visible.sln
│   │   │   ├── Visible.suo
│   │   │   ├── Visible.vbproj
│   │   │   └── Visible.vbproj.user
│   │   ├── IsVisible
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── IsVisible.sln
│   │   │   ├── IsVisible.suo
│   │   │   ├── IsVisible.vbproj
│   │   │   └── IsVisible.vbproj.user
│   │   ├── 区域
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 区域.sln
│   │   │   ├── 区域.suo
│   │   │   ├── 区域.vbproj
│   │   │   └── 区域.vbproj.user
│   │   ├── 曲线的拾取
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── 曲线的拾取.sln
│   │   │   ├── 曲线的拾取.suo
│   │   │   ├── 曲线的拾取.vbproj
│   │   │   └── 曲线的拾取.vbproj.user
│   │   └── 直线段变换
│   │   ├── app.config
│   │   ├── AssemblyInfo.vb
│   │   ├── CAD-Net.sln
│   │   ├── CAD-Net.suo
│   │   ├── CBox.vb
│   │   ├── CCreateLine.vb
│   │   ├── CGElement.vb
│   │   ├── CLine.vb
│   │   ├── CMirror.vb
│   │   ├── CMove.vb
│   │   ├── CRotate.vb
│   │   ├── CSelect.vb
│   │   ├── DrawMain.resx
│   │   ├── DrawMain.vb
│   │   ├── ICommand.vb
│   │   ├── LineTransform.sln
│   │   ├── LineTransform.suo
│   │   ├── LineTransform.vbproj
│   │   ├── LineTransform.vbproj.user
│   │   ├── Module1.vb
│   │   ├── ve-8D.tmp
│   │   ├── ve-E.tmp
│   │   └── Win32API.vb
│   └── VC#
│   ├── CLone
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CLone.csproj
│   │   ├── CLone.csproj.user
│   │   ├── CLone.sln
│   │   ├── CLone.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── ControlPoints
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── ControlPoints.csproj
│   │   ├── ControlPoints.csproj.user
│   │   ├── ControlPoints.sln
│   │   ├── ControlPoints.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── Flatten1
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Flatten1.csproj
│   │   ├── Flatten1.csproj.user
│   │   ├── Flatten1.sln
│   │   ├── Flatten1.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── GetBounds
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── GetBounds.csproj
│   │   ├── GetBounds.csproj.user
│   │   ├── GetBounds.sln
│   │   └── GetBounds.suo
│   ├── IsVisible
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── IsVisible.csproj
│   │   ├── IsVisible.csproj.user
│   │   ├── IsVisible.sln
│   │   └── IsVisible.suo
│   ├── Visible
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Visible.csproj
│   │   ├── Visible.csproj.user
│   │   ├── Visible.sln
│   │   └── Visible.suo
│   ├── 区域
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── 区域.csproj
│   │   ├── 区域.csproj.user
│   │   ├── 区域.sln
│   │   └── 区域.suo
│   └── 曲线的拾取
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── 曲线的拾取.csproj
│   ├── 曲线的拾取.csproj.user
│   ├── 曲线的拾取.sln
│   └── 曲线的拾取.suo
├── ch10
│   ├── readme.txt
│   ├── VB
│   │   ├── Flatten2
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Flatten2.sln
│   │   │   ├── Flatten2.suo
│   │   │   ├── Flatten2.vbproj
│   │   │   ├── Flatten2.vbproj.user
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── Flatten3
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Flatten3.sln
│   │   │   ├── Flatten3.suo
│   │   │   ├── Flatten3.vbproj
│   │   │   ├── Flatten3.vbproj.user
│   │   │   ├── Flatten.sln
│   │   │   ├── Flatten.suo
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── 图元求交
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CLine.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Module1.vb
│   │   │   ├── 图元求交.sln
│   │   │   ├── 图元求交.suo
│   │   │   ├── 图元求交.vbproj
│   │   │   └── 图元求交.vbproj.user
│   │   ├── 拾取
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CCircle.vb
│   │   │   ├── CLine.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Module1.vb
│   │   │   ├── 拾取.sln
│   │   │   ├── 拾取.suo
│   │   │   ├── 拾取.vbproj
│   │   │   └── 拾取.vbproj.user
│   │   └── 曲线求交
│   │   ├── AssemblyInfo.vb
│   │   ├── CLine.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── Module1.vb
│   │   ├── 曲线求交.sln
│   │   ├── 曲线求交.suo
│   │   ├── 曲线求交.vbproj
│   │   └── 曲线求交.vbproj.user
│   └── VC#
│   ├── Flatten2
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Flatten2.csproj
│   │   ├── Flatten2.csproj.user
│   │   ├── Flatten2.sln
│   │   ├── Flatten2.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── Flatten3
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Flatten3.csproj
│   │   ├── Flatten3.csproj.user
│   │   ├── Flatten3.sln
│   │   ├── Flatten3.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── 图元求交
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CLine.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Module.cs
│   │   ├── 图元求交.csproj
│   │   ├── 图元求交.csproj.user
│   │   ├── 图元求交.sln
│   │   └── 图元求交.suo
│   ├── 拾取
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CCircle.cs
│   │   ├── CLine.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Module.cs
│   │   ├── 拾取.csproj
│   │   ├── 拾取.csproj.user
│   │   ├── 拾取.sln
│   │   └── 拾取.suo
│   └── 曲线求交
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── CLine.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── Module.cs
│   ├── 曲线求交.csproj
│   ├── 曲线求交.csproj.user
│   ├── 曲线求交.sln
│   └── 曲线求交.suo
├── ch11
│   ├── readme.txt
│   ├── VB
│   │   ├── ArrayListTest
│   │   │   ├── ArrayListTest.sln
│   │   │   ├── ArrayListTest.suo
│   │   │   ├── ArrayListTest.vbproj
│   │   │   ├── ArrayListTest.vbproj.user
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── foreach1
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CPosition.vb
│   │   │   ├── CRectangle.vb
│   │   │   ├── foreach1.sln
│   │   │   ├── foreach1.suo
│   │   │   ├── foreach1.vbproj
│   │   │   ├── foreach1.vbproj.user
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── foreach2
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CLineEnum.vb
│   │   │   ├── CLines.vb
│   │   │   ├── CLine.vb
│   │   │   ├── foreach2.sln
│   │   │   ├── foreach2.suo
│   │   │   ├── foreach2.vbproj
│   │   │   ├── foreach2.vbproj.user
│   │   │   ├── Form1.resx
│   │   │   └── Form1.vb
│   │   ├── GDI+交互绘图
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CLine.vb
│   │   │   ├── DrawLine.sln
│   │   │   ├── DrawLine.suo
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── GDI+交互绘图.sln
│   │   │   ├── GDI+交互绘图.suo
│   │   │   ├── GDI+交互绘图.vbproj
│   │   │   ├── GDI+交互绘图.vbproj.user
│   │   │   ├── 橡皮线.sln
│   │   │   ├── 橡皮线.suo
│   │   │   └── 橡皮线.vbproj.user
│   │   ├── Serialize
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CPosition.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Serialize.sln
│   │   │   ├── Serialize.suo
│   │   │   ├── Serialize.vbproj
│   │   │   └── Serialize.vbproj.user
│   │   ├── StrongKey
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CLines.vb
│   │   │   ├── CLine.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── StrongKey.sln
│   │   │   ├── StrongKey.suo
│   │   │   ├── StrongKey.vbproj
│   │   │   ├── StrongKey.vbproj.user
│   │   │   ├── ve-22.tmp
│   │   │   └── ve-28.tmp
│   │   ├── VBNET_CAD-4
│   │   │   ├── About.resx
│   │   │   ├── About.vb
│   │   │   ├── app.config
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CAD-Net.sln
│   │   │   ├── CAD-Net.suo
│   │   │   ├── CArc.vb
│   │   │   ├── CBox.vb
│   │   │   ├── CCircle.vb
│   │   │   ├── CCreateArc.vb
│   │   │   ├── CCreateCircle.vb
│   │   │   ├── CCreateLine.vb
│   │   │   ├── CCreateRectangle.vb
│   │   │   ├── CCreateText.vb
│   │   │   ├── CGElement.vb
│   │   │   ├── CLine.vb
│   │   │   ├── CMirror.vb
│   │   │   ├── CMove.vb
│   │   │   ├── CRectangle.vb
│   │   │   ├── CRotate.vb
│   │   │   ├── CSelect.vb
│   │   │   ├── CText.vb
│   │   │   ├── DrawMain.resx
│   │   │   ├── DrawMain.vb
│   │   │   ├── ICommand.vb
│   │   │   ├── Module1.vb
│   │   │   ├── NET_CAD.sln
│   │   │   ├── NET_CAD.suo
│   │   │   ├── NET_CAD.vbproj
│   │   │   ├── NET_CAD.vbproj.user
│   │   │   ├── Splash.resx
│   │   │   ├── Splash.vb
│   │   │   ├── ve-8D.tmp
│   │   │   ├── ve-E.tmp
│   │   │   └── Win32API.vb
│   │   └── 圆整错误
│   │   ├── AssemblyInfo.vb
│   │   ├── Float Coordinate.sln
│   │   ├── Float Coordinate.suo
│   │   ├── Float Coordinate.vbproj
│   │   ├── Float Coordinate.vbproj.user
│   │   ├── Form1.resx
│   │   └── Form1.vb
│   └── VC#
│   ├── ArrayListTest
│   │   ├── App.ico
│   │   ├── ArrayListTest.csproj
│   │   ├── ArrayListTest.csproj.user
│   │   ├── ArrayListTest.sln
│   │   ├── ArrayListTest.suo
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── foreach2
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CLine.cs
│   │   ├── CLineEnum.cs
│   │   ├── CLines.cs
│   │   ├── foreach2.csproj
│   │   ├── foreach2.csproj.user
│   │   ├── foreach2.sln
│   │   ├── foreach2.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── GDI+交互绘图
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CLine.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── GDI+交互绘图2.csproj.user
│   │   ├── GDI+交互绘图2.sln
│   │   ├── GDI+交互绘图2.suo
│   │   ├── GDI+交互绘图.csproj
│   │   ├── GDI+交互绘图.csproj.user
│   │   ├── GDI+交互绘图.sln
│   │   └── GDI+交互绘图.suo
│   ├── Serialize
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CPosition.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Serialize.csproj
│   │   ├── Serialize.csproj.user
│   │   ├── Serialize.sln
│   │   └── Serialize.suo
│   ├── StrongKey
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CLine.cs
│   │   ├── CLines.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── StrongKey.csproj
│   │   ├── StrongKey.csproj.user
│   │   ├── StrongKey.sln
│   │   └── StrongKey.suo
│   ├── VC#NET_CAD-4
│   │   ├── About.cs
│   │   ├── About.resx
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── cad.CAD
│   │   ├── CArc.cs
│   │   ├── CBox.cs
│   │   ├── CCircle.cs
│   │   ├── CCreateArc.cs
│   │   ├── CCreateCircle.cs
│   │   ├── CCreateLine.cs
│   │   ├── CCreateRectangle.cs
│   │   ├── CCreateText.cs
│   │   ├── CGElement.cs
│   │   ├── CLine.cs
│   │   ├── CMirror.cs
│   │   ├── CMove.cs
│   │   ├── Common.cs
│   │   ├── CRectangle.cs
│   │   ├── CRotate.cs
│   │   ├── CSelect.cs
│   │   ├── CText.cs
│   │   ├── Font.cs
│   │   ├── Font.resx
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── ICommand.cs
│   │   ├── Splash.cs
│   │   ├── Splash.resx
│   │   ├── Text.cs
│   │   ├── Text.resx
│   │   ├── VCSharp.csproj
│   │   ├── VCSharp.csproj.user
│   │   ├── VCSharp.sln
│   │   ├── VCSharp.suo
│   │   └── Win32API.cs
│   └── 圆整错误
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── 圆整错误.csproj
│   ├── 圆整错误.csproj.user
│   ├── 圆整错误.sln
│   └── 圆整错误.suo
├── ch12
│   ├── readme.txt
│   ├── VB
│   │   ├── Strategy
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Context.vb
│   │   │   ├── CPCircle.vb
│   │   │   ├── DrawCircle.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── Strategy.sln
│   │   │   ├── Strategy.suo
│   │   │   ├── Strategy.vbproj
│   │   │   ├── Strategy.vbproj.user
│   │   │   └── ThreePCircle.vb
│   │   ├── template
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── CCircle.vb
│   │   │   ├── CLine.vb
│   │   │   ├── Form1.resx
│   │   │   ├── Form1.vb
│   │   │   ├── GESelecter.vb
│   │   │   ├── template.sln
│   │   │   ├── template.suo
│   │   │   ├── template.vbproj
│   │   │   └── template.vbproj.user
│   │   └── Visitor
│   │   ├── AssemblyInfo.vb
│   │   ├── CCircle.vb
│   │   ├── CGElement.vb
│   │   ├── CLine.vb
│   │   ├── Drawer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── Visitor.sln
│   │   ├── Visitor.suo
│   │   ├── Visitor.vb
│   │   ├── Visitor.vbproj
│   │   ├── Visitor.vbproj.user
│   │   └── Win32API.vb
│   └── VC#
│   ├── Strategy
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Context.cs
│   │   ├── CPCircle.cs
│   │   ├── DrawCircle.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Strategy.csproj
│   │   ├── Strategy.csproj.user
│   │   ├── Strategy.sln
│   │   ├── Strategy.suo
│   │   └── ThreePCircle.cs
│   ├── template
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── CCircle.cs
│   │   ├── CLine.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── GESelecter.cs
│   │   ├── template.csproj
│   │   ├── template.csproj.user
│   │   ├── template.sln
│   │   └── template.suo
│   └── Visitor
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── CCircle.cs
│   ├── CGElement.cs
│   ├── CLine.cs
│   ├── Drawer.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── Visitor.cs
│   ├── Visitor.csproj
│   ├── Visitor.csproj.user
│   ├── Visitor.sln
│   ├── Visitor.suo
│   └── Win32API.cs
└── readme.txt

135 directories, 1088 files

标签:

实例下载地址

用DotNET开发交互式CAD系统(PDF+光盘).rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警