实例介绍
C# 动态拖动控件套打功能很全面 实现了动态自动定模板 填写数据套打各种类型文件
【实例截图】
【核心代码】
4744302543410225075.rar
└── PrintThemp
├── ActiveX
│ ├── ActiveX.vdproj
│ ├── Debug
│ │ └── ActiveX.CAB
│ └── Release
│ ├── bin
│ │ └── Debug
│ │ ├── DockPanel.config
│ │ ├── Print.exe
│ │ ├── Print.pdb
│ │ ├── PrintThemp.dll
│ │ ├── PrintThemp.pdb
│ │ ├── Print.vshost.exe
│ │ ├── Print.vshost.exe.manifest
│ │ ├── Themplate
│ │ │ ├── 产品型式试验报告.bmp
│ │ │ ├── 产品型式试验报告.xml
│ │ │ ├── 产品符合性声明.bmp
│ │ │ ├── 产品符合性声明.xml
│ │ │ ├── 加工贸易业务批准证.bmp
│ │ │ ├── 加工贸易业务批准证.xml
│ │ │ ├── 发票.bmp
│ │ │ ├── 发票.xml
│ │ │ ├── 合同.bmp
│ │ │ ├── 合同.xml
│ │ │ ├── 唛头.bmp
│ │ │ ├── 唛头.xml
│ │ │ ├── 报检委托书.bmp
│ │ │ ├── 报检委托书.xml
│ │ │ ├── 报检委托书(国家).bmp
│ │ │ ├── 报检委托书(国家).xml
│ │ │ ├── 装箱单.bmp
│ │ │ └── 装箱单.xml
│ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ ├── obj
│ │ └── Debug
│ │ ├── Print.csproj.FileListAbsolute.txt
│ │ ├── Print.exe
│ │ ├── Print.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Print.csproj
│ ├── Print.csproj.user
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── PrintThemp
│ ├── bin
│ │ └── Debug
│ │ ├── PrintThemp.dll
│ │ ├── PrintThemp.pdb
│ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ ├── CustomEditList.cs
│ ├── CustomEditList.Designer.cs
│ ├── CustomEditList.resx
│ ├── EditEumnCollectionInfo.cs
│ ├── EditEventReferences.cs
│ ├── EditMainToolEventReferences.cs
│ ├── EditPrintEventArgs.cs
│ ├── EditTemplateAddControlArgs.cs
│ ├── EditTemplateDataSource.cs
│ ├── EditTemplateDSCollection.cs
│ ├── EditTemplateInfo.cs
│ ├── EditTemplateMethod.cs
│ ├── EditTemplatePrint.cs
│ ├── FrmEagleLook.cs
│ ├── FrmEagleLook.Designer.cs
│ ├── FrmEagleLook.resx
│ ├── FrmEditAdd.cs
│ ├── FrmEditAdd.Designer.cs
│ ├── FrmEditAdd.resx
│ ├── FrmEditControlList.cs
│ ├── FrmEditControlList.Designer.cs
│ ├── FrmEditControlList.resx
│ ├── FrmEditfrom.cs
│ ├── FrmEditfrom.Designer.cs
│ ├── FrmEditfrom.resx
│ ├── FrmEditInfoBox.cs
│ ├── FrmEditInfoBox.Designer.cs
│ ├── FrmEditInfoBox.resx
│ ├── FrmEditLeftList.cs
│ ├── FrmEditLeftList.Designer.cs
│ ├── FrmEditLeftList.resx
│ ├── FrmEditMainPanel.cs
│ ├── FrmEditMainPanel.Designer.cs
│ ├── FrmEditMainPanel.resx
│ ├── obj
│ │ └── Debug
│ │ ├── PrintThemp.csproj.FileListAbsolute.txt
│ │ ├── PrintThemp.csproj.GenerateResource.Cache
│ │ ├── PrintThemp.CustomEditList.resources
│ │ ├── PrintThemp.dll
│ │ ├── PrintThemp.FrmEagleLook.resources
│ │ ├── PrintThemp.FrmEditAdd.resources
│ │ ├── PrintThemp.FrmEditControlList.resources
│ │ ├── PrintThemp.FrmEditfrom.resources
│ │ ├── PrintThemp.FrmEditInfoBox.resources
│ │ ├── PrintThemp.FrmEditLeftList.resources
│ │ ├── PrintThemp.FrmEditMainPanel.resources
│ │ ├── PrintThemp.pdb
│ │ ├── PrintThemp.Properties.Resources.resources
│ │ ├── Refactor
│ │ │ └── PrintThemp.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── PrintThemp.csproj
│ ├── PrintThemp.csproj.user
│ ├── PrintThemp_Key.snk
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── ToolImage
│ ├── clearzoom.bmp
│ ├── copy.bmp
│ ├── cut.bmp
│ ├── delete.bmp
│ ├── dragmove.bmp
│ ├── paste.bmp
│ ├── Thumbs.db
│ ├── zoomin.bmp
│ ├── zoomout.bmp
│ ├── 中间对齐.bmp
│ ├── 使垂直间距相等.bmp
│ ├── 使大小相同.bmp
│ ├── 使宽度相同.bmp
│ ├── 使水平间距相等.bmp
│ ├── 使高度相同.bmp
│ ├── 减少垂直间距.bmp
│ ├── 减少水平间距.bmp
│ ├── 右对齐.bmp
│ ├── 垂直居中.bmp
│ ├── 增加垂直间距.bmp
│ ├── 增加水平间距.bmp
│ ├── 对齐到网格.bmp
│ ├── 居中对齐.bmp
│ ├── 左对齐.bmp
│ ├── 底部对齐.bmp
│ ├── 水平居中.bmp
│ ├── 移除垂直间距.bmp
│ ├── 移除水平间距.bmp
│ ├── 置于底层.bmp
│ ├── 置于顶层.bmp
│ └── 顶部对齐.bmp
├── PrintThempActiveX
│ ├── bin
│ │ └── Debug
│ │ ├── index.html
│ │ ├── PrintThempActiveX.dll
│ │ ├── PrintThempActiveX.pdb
│ │ ├── PrintThempActiveX.tlb
│ │ └── Themplate
│ │ ├── 产品型式试验报告.bmp
│ │ ├── 产品型式试验报告.xml
│ │ ├── 产品符合性声明.bmp
│ │ ├── 产品符合性声明.xml
│ │ ├── 加工贸易业务批准证.bmp
│ │ ├── 加工贸易业务批准证.xml
│ │ ├── 发票.bmp
│ │ ├── 发票.xml
│ │ ├── 合同.bmp
│ │ ├── 合同.xml
│ │ ├── 唛头.bmp
│ │ ├── 唛头.xml
│ │ ├── 报检委托书.bmp
│ │ ├── 报检委托书.xml
│ │ ├── 报检委托书(国家).bmp
│ │ ├── 报检委托书(国家).xml
│ │ ├── 装箱单.bmp
│ │ └── 装箱单.xml
│ ├── EditEumnCollectionInfo.cs
│ ├── EditEventReferences.cs
│ ├── EditMainToolEventReferences.cs
│ ├── EditPrintEventArgs.cs
│ ├── EditTemplateAddControlArgs.cs
│ ├── EditTemplateDataSource.cs
│ ├── EditTemplateDSCollection.cs
│ ├── EditTemplateInfo.cs
│ ├── EditTemplateMethod.cs
│ ├── EditTemplatePrint.cs
│ ├── FrmEditControlList.cs
│ ├── FrmEditControlList.Designer.cs
│ ├── FrmEditControlList.resx
│ ├── FrmEditFrm.cs
│ ├── FrmEditFrm.Designer.cs
│ ├── FrmEditFrm.resx
│ ├── FrmEditInfoBox.cs
│ ├── FrmEditInfoBox.Designer.cs
│ ├── FrmEditInfoBox.resx
│ ├── FrmEditMainPanel.cs
│ ├── FrmEditMainPanel.Designer.cs
│ ├── FrmEditMainPanel.resx
│ ├── FrmEditThempZoom.cs
│ ├── FrmEditThempZoom.Designer.cs
│ ├── FrmEditThempZoom.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── PrintThempActiveX.csproj.FileListAbsolute.txt
│ │ │ ├── PrintThempActiveX.csproj.GenerateResource.Cache
│ │ │ ├── PrintThempActiveX.dll
│ │ │ ├── PrintThempActiveX.FrmEditControlList.resources
│ │ │ ├── PrintThempActiveX.FrmEditFrm.resources
│ │ │ ├── PrintThempActiveX.FrmEditInfoBox.resources
│ │ │ ├── PrintThempActiveX.FrmEditMainPanel.resources
│ │ │ ├── PrintThempActiveX.FrmEditThempZoom.resources
│ │ │ ├── PrintThempActiveX.pdb
│ │ │ ├── PrintThempActiveX.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── PrintThempActiveX.csproj.UnmanagedRegistration.cache
│ ├── PrintThempActiveX.csproj
│ ├── PrintThempActiveX_Key.snk
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ └── Resources.resx
├── PrintThemp.sln
├── PrintThemp.suo
└── UsingDll
└── WeifenLuo.WinFormsUI.Docking.dll
32 directories, 193 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论