嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#/WinForm插件程序实例
环境:VS2008; 本例测试WinForm下的插件结构程序编写, 利用用户控件,实现左边菜单右操作区的效果, 上传内容为编写软件前写的测试例子, 希望对您有帮助。
.
├── C#WinForm插件程序实例_PlugInAppTest.rar
└── PlugInAppTest
├── AnotherUC
│ ├── AnotherUC.csproj
│ ├── MainClass.cs
│ ├── MainUC.Designer.cs
│ ├── MainUC.cs
│ ├── MainUC.resx
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ └── obj
│ └── Debug
│ ├── 02-AnotherUC.dll
│ ├── 02-AnotherUC.pdb
│ ├── AnotherUC.MainUC.resources
│ ├── AnotherUC.csproj.FileListAbsolute.txt
│ ├── AnotherUC.csproj.GenerateResource.Cache
│ ├── Refactor
│ └── TempPE
├── ConfigFile
│ ├── ConfigFile.csproj
│ ├── MainClass.cs
│ ├── MainUC.Designer.cs
│ ├── MainUC.cs
│ ├── MainUC.resx
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ └── obj
│ └── Debug
│ ├── 01-ConfigFile.dll
│ ├── 01-ConfigFile.pdb
│ ├── ConfigFile.MainUC.resources
│ ├── ConfigFile.csproj.FileListAbsolute.txt
│ ├── ConfigFile.csproj.GenerateResource.Cache
│ ├── Refactor
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
├── Contract
│ ├── BaseUC.Designer.cs
│ ├── BaseUC.cs
│ ├── BaseUC.resx
│ ├── Contract.csproj
│ ├── IAppContext.cs
│ ├── IPlugIn.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ └── obj
│ └── Debug
│ ├── Contract.BaseUC.resources
│ ├── Contract.csproj.FileListAbsolute.txt
│ ├── Contract.csproj.GenerateResource.Cache
│ ├── Contract.dll
│ ├── Contract.pdb
│ ├── Refactor
│ │ └── Contract.dll
│ └── TempPE
├── PlugInAppTest
│ ├── CustomerPanel.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.cs
│ ├── MainForm.resx
│ ├── PlugIn
│ ├── PlugInAppTest.csproj
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ └── Debug
│ │ ├── Contract.dll
│ │ ├── Contract.pdb
│ │ ├── PlugIn
│ │ │ ├── 01-ConfigFile.dll
│ │ │ ├── 01-ConfigFile.pdb
│ │ │ ├── 02-AnotherUC.dll
│ │ │ ├── 02-AnotherUC.pdb
│ │ │ ├── Contract.dll
│ │ │ └── Contract.pdb
│ │ ├── PlugInAppTest.exe
│ │ ├── PlugInAppTest.pdb
│ │ ├── PlugInAppTest.vshost.exe
│ │ └── PlugInAppTest.vshost.exe.manifest
│ └── obj
│ └── Debug
│ ├── PlugInAppTest.MainForm.resources
│ ├── PlugInAppTest.Properties.Resources.resources
│ ├── PlugInAppTest.csproj.FileListAbsolute.txt
│ ├── PlugInAppTest.csproj.GenerateResource.Cache
│ ├── PlugInAppTest.exe
│ ├── PlugInAppTest.pdb
│ ├── Refactor
│ └── TempPE
├── PlugInAppTest.sln
├── PlugInAppTest.suo
├── protal.png
├── readme.txt
└── solution.png
32 directories, 71 files