【例子介绍】基于C#GDI的图形绘制程序源代码
基于c#GDI的图形绘制程序,方便初学者学习GID绘图编程。 图形数据存放在SqlServer数据库中 采用了ActiveRecord进行数据库访问。 运行环境: WindowsXP 以上 Sqlserver2005 .net Framework4.0
【相关图片】
【源码结构】
.
├── AddLayerForm.cs
├── AddLayerForm.resx
├── App.ico
├── AssemblyInfo.cs
├── CheckDelegate.cs
├── GeoObjects
│ ├── AssemblyInfo.cs
│ ├── GeoLine.cs
│ ├── GeoObjects.csproj
│ ├── GeoObjects.csproj.user
│ ├── GeoPoint.cs
│ ├── GeoRectangle.cs
│ ├── GeoSize.cs
│ ├── Geometry.cs
│ ├── LinkerLine.cs
│ ├── LinkerRectangle.cs
│ ├── NullPointerException.cs
│ ├── RectangelConvert.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── GeoObjects.dll
│ │ │ ├── GeoObjects.pdb
│ │ │ └── GeoObjects.tlb
│ │ └── Release
│ │ ├── GeoObjects.dll
│ │ └── GeoObjects.tlb
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GeoObjects.csproj.FileListAbsolute.txt
│ │ ├── GeoObjects.dll
│ │ ├── GeoObjects.pdb
│ │ ├── GeoObjects.projdata
│ │ ├── GeoObjects.tlb
│ │ ├── TempPE
│ │ └── temp
│ └── Release
│ ├── GeoObjects.dll
│ ├── GeoObjects.projdata
│ ├── GeoObjects.tlb
│ ├── TempPE
│ └── temp
├── GrahpicContainer
│ ├── AssemblyInfo.cs
│ ├── GDIDrawGeometry.cs
│ ├── GrahpicContainer.csproj
│ ├── GrahpicContainer.csproj.user
│ ├── GraphicContainer.cs
│ ├── GraphicContainer.resx
│ ├── IGraphicContainer.cs
│ ├── Properties
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ReadDataProxy.cs
│ ├── RubberBand.cs
│ ├── TrackMutilLine.cs
│ ├── TrackRectangel.cs
│ ├── TrackSingleLine.cs
│ ├── TrackingLayer.cs
│ ├── UMSG.cs
│ ├── Win32Support.cs
│ ├── displayfeedback
│ │ └── IDisplayFeedback.cs
│ └── tool
│ ├── CommandFactory.cs
│ └── Tool.cs
├── GrahpicObjectPorj.csproj
├── GrahpicObjectPorj.csproj.user
├── GrahpicObjectPorj.sln
├── GraphicObjects
│ ├── AssemblyInfo.cs
│ ├── GraphicObjects.csproj
│ ├── GraphicObjects.csproj.user
│ ├── Map.cs
│ ├── MyCodeTools.Config
│ ├── Properties
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Uitlities
│ │ └── Transform.cs
│ ├── datasource
│ │ ├── BaseObject.cs
│ │ ├── Connection.cs
│ │ ├── Fea2DB.cs
│ │ ├── Feature.cs
│ │ ├── FeatureClass.cs
│ │ ├── FeatureLayer.cs
│ │ ├── GroupLayerEntity.cs
│ │ ├── GroupLayerEntity.hbm.xml
│ │ ├── IFeatureWorkspace.cs
│ │ ├── LayerRecordEntity.cs
│ │ └── LayerRecordEntity.hbm.xml
│ └── display
│ ├── Render.cs
│ └── RenderImages.cs
├── InitLayersTree.cs
├── InitTopoLayers.cs
├── InputMessageBox.cs
├── InputMessageBox.resx
├── MainForm.cs
├── MainForm.resx
├── MyScrollBar.cs
├── MyScrollBar.resx
├── SymbolLib
│ ├── AssemblyInfo.cs
│ ├── ILayerSymbol.cs
│ ├── ISymbolDraw.cs
│ ├── LayerSymbol.cs
│ ├── MoLayerSymbol.cs
│ ├── MoSymbolFactory.cs
│ ├── SymbolConvert.cs
│ ├── SymbolFactory.cs
│ ├── SymbolLib.csproj
│ ├── SymbolLib.csproj.user
│ ├── SymbolManager.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Config.dll
│ │ │ ├── Config.pdb
│ │ │ ├── SymbolLib.dll
│ │ │ ├── SymbolLib.pdb
│ │ │ ├── Utils.dll
│ │ │ └── Utils.pdb
│ │ └── Release
│ │ └── SymbolLib.dll
│ └── obj
│ ├── Debug
│ │ ├── SymbolLib.dll
│ │ ├── SymbolLib.pdb
│ │ ├── SymbolLib.projdata
│ │ ├── TempPE
│ │ └── temp
│ └── Release
│ ├── SymbolLib.dll
│ ├── SymbolLib.projdata
│ ├── TempPE
│ └── temp
├── UpgradeLog.XML
├── UserControl1.cs
├── UserControl1.resx
├── app.config
├── myTools
│ ├── AddCheckerTool.cs
│ ├── AddLinkRect.cs
│ ├── AddLinkerLine.cs
│ ├── AddMulLine.cs
│ ├── AddRectTool.cs
│ ├── AddSingleLine.cs
│ ├── BaseTool.cs
│ ├── DeviceAttrForm.cs
│ ├── DeviceAttrForm.resx
│ ├── LogicZoomInTool.cs
│ ├── MoveCheckTool.cs
│ ├── MoveRectTool.cs
│ ├── MyCommandFactory.cs
│ ├── StartCheckCommand.cs
│ ├── UpAlignCommand.cs
│ └── ZoomInTool.cs
└── 基于C#GDI的图形绘制程序源代码_GrahpicObjectPorj_src.rar
32 directories, 127 files
评论