在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → c#仿电脑管家源码

c#仿电脑管家源码

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:5.24M
  • 下载次数:69
  • 浏览次数:613
  • 发布时间:2021-04-27
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:尤土乐
  • 文件格式:.rar
  • 所需积分:3
 相关标签: 电脑 源码 C#

实例介绍

【实例简介】仿电脑管家,界面美观漂亮,系统功能齐全,操作便捷,可在.net4.0以上运行。
【实例截图】

【核心代码】

仿电脑管家

├── EncryptForm
│   ├── BitmapRegion.cs
│   ├── EncryptForm.cs
│   ├── EncryptForm.csproj
│   ├── EncryptForm.csproj.user
│   ├── EncryptForm.designer.cs
│   ├── EncryptForm.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Resources
│   │   └── EncryptForm_02_01.png
│   ├── bin
│   │   ├── Debug
│   │   └── Release
│   └── obj
│       └── x86
│           ├── Debug
│           │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│           │   ├── EncryptForm.EncryptForm.resources
│           │   ├── EncryptForm.Properties.Resources.resources
│           │   ├── EncryptForm.csproj.FileListAbsolute.txt
│           │   ├── GenerateResource.read.1.tlog
│           │   ├── GenerateResource.write.1.tlog
│           │   └── TempPE
│           │       └── Properties.Resources.Designer.cs.dll
│           └── Release
│               ├── DesignTimeResolveAssemblyReferences.cache
│               ├── DesignTimeResolveAssemblyReferencesInput.cache
│               ├── EncryptForm.EncryptForm.resources
│               ├── EncryptForm.Properties.Resources.resources
│               ├── EncryptForm.csproj.FileListAbsolute.txt
│               ├── GenerateResource.read.1.tlog
│               ├── GenerateResource.write.1.tlog
│               └── TempPE
│                   └── Properties.Resources.Designer.cs.dll
├── ImageLibrary
│   ├── ImageLibrary.csproj
│   ├── ImageLibrary.csproj.user
│   ├── ImagePoint.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resource_Png.Designer.cs
│   │   └── Resource_Png.resx
│   ├── Resources
│   │   ├── btn_beifen_2011_01_01.png
│   │   ├── btn_huanyuan_2011_01_01.png
│   │   ├── btn_youhua_2011_01_01.png
│   │   ├── exit_2011_01_01.png
│   │   ├── exit_2011_01_02.png
│   │   ├── from.gif
│   │   ├── hide_2011_01_01.png
│   │   ├── hide_2011_01_02.png
│   │   ├── leave_2011_01_01.png
│   │   ├── menu2011_01_01.png
│   │   ├── menu2011_01_02.png
│   │   ├── menu2011_01_03.png
│   │   ├── skin_2011_01_01.png
│   │   ├── skin_2011_01_02.png
│   │   ├── skinbgcolor.png
│   │   ├── titlebut_01_2011_01_01.png
│   │   ├── titlebut_01_2011_01_02.png
│   │   ├── titlebut_02_2011_01_01.png
│   │   ├── titlebut_02_2011_01_02.png
│   │   ├── titlebut_03_2011_01_01.png
│   │   ├── titlebut_03_2011_01_02.png
│   │   ├── titlebut_04_2011_01_01.png
│   │   ├── titlebut_04_2011_01_02.png
│   │   ├── titlebut_05_2011_01_01.png
│   │   ├── titlebut_05_2011_01_02.png
│   │   ├── titlebut_06_2011_01_01.png
│   │   ├── titlebut_06_2011_01_02.png
│   │   ├── titlebut_07_2011_01_01.png
│   │   ├── titlebut_07_2011_01_02.png
│   │   └── update_2011_01_01.png
│   ├── bin
│   │   ├── Debug
│   │   └── Release
│   │       ├── ImageLibrary.dll
│   │       └── ImageLibrary.pdb
│   └── obj
│       ├── Debug
│       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   ├── GenerateResource.read.1.tlog
│       │   ├── GenerateResource.write.1.tlog
│       │   ├── ImageLibrary.Properties.Resource_Png.resources
│       │   ├── ImageLibrary.csproj.FileListAbsolute.txt
│       │   ├── ImageLibrary.dll
│       │   ├── ImageLibrary.pdb
│       │   └── TempPE
│       │       ├── Properties.Resource_Png.Designer.cs.dll
│       │       └── Resource_Png.Designer.cs.dll
│       └── Release
│           ├── DesignTimeResolveAssemblyReferencesInput.cache
│           ├── GenerateResource.read.1.tlog
│           ├── GenerateResource.write.1.tlog
│           ├── ImageLibrary.Properties.Resource_Png.resources
│           ├── ImageLibrary.csproj.FileListAbsolute.txt
│           ├── ImageLibrary.csproj.GenerateResource.Cache
│           ├── ImageLibrary.csprojResolveAssemblyReference.cache
│           ├── ImageLibrary.dll
│           ├── ImageLibrary.pdb
│           └── TempPE
│               └── Properties.Resource_Png.Designer.cs.dll
├── MailForm
│   ├── MailForm.csproj
│   ├── MailStart.Designer.cs
│   ├── MailStart.cs
│   ├── MailStart.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── bin
│   │   ├── Debug
│   │   └── Release
│   ├── mailunit.cs
│   └── obj
│       └── x86
│           ├── Debug
│           │   ├── DesignTimeResolveAssemblyReferences.cache
│           │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│           │   ├── GenerateResource.read.1.tlog
│           │   ├── GenerateResource.write.1.tlog
│           │   ├── MailForm.MailStart.resources
│           │   ├── MailForm.Properties.Resources.resources
│           │   ├── MailForm.csproj.FileListAbsolute.txt
│           │   └── TempPE
│           └── Release
│               ├── DesignTimeResolveAssemblyReferences.cache
│               ├── DesignTimeResolveAssemblyReferencesInput.cache
│               ├── GenerateResource.read.1.tlog
│               ├── GenerateResource.write.1.tlog
│               ├── MailForm.MailStart.resources
│               ├── MailForm.Properties.Resources.resources
│               ├── MailForm.csproj.FileListAbsolute.txt
│               └── TempPE
├── OptimizeTool.sln
├── OptimizeTool.suo
├── OptimizeToolToolForm
│   ├── 01.ico
│   ├── Form4.Designer.cs
│   ├── Form4.cs
│   ├── Form4.resx
│   ├── Form7.Designer.cs
│   ├── Form7.cs
│   ├── Form7.resx
│   ├── Form8.Designer.cs
│   ├── Form8.cs
│   ├── Form8.resx
│   ├── FormMenu
│   │   ├── ParentForm.Designer.cs
│   │   ├── ParentForm.cs
│   │   ├── ParentForm.resx
│   │   ├── WindowMenu.Designer.cs
│   │   ├── WindowMenu.cs
│   │   └── WindowMenu.resx
│   ├── OptimizeToolToolForm.csproj
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Resources
│   │   ├── panelindex_bg_2011_01_01.png
│   │   ├── skin_01.png
│   │   ├── skin_01_02.png
│   │   ├── skin_02.png
│   │   ├── skin_02_02.png
│   │   ├── skin_03.png
│   │   ├── skin_03_02.png
│   │   ├── skinbgcolor.png
│   │   ├── system_001.png
│   │   ├── system_002.png
│   │   ├── system_003.png
│   │   ├── system_004.png
│   │   ├── system_005.png
│   │   ├── system_006.png
│   │   └── system_007.png
│   ├── SystemClear
│   │   ├── Form2.Designer.cs
│   │   ├── Form2.cs
│   │   └── Form2.resx
│   ├── bin
│   │   ├── Debug
│   │   └── Release
│   │       ├── ImageLibrary.dll
│   │       ├── ImageLibrary.pdb
│   │       ├── OptimizeToolToolForm.exe
│   │       ├── OptimizeToolToolForm.pdb
│   │       ├── OptimizeToolToolForm.vshost.exe
│   │       ├── OptimizeToolToolForm.vshost.exe.manifest
│   │       ├── ToolClassLibrary.dll
│   │       ├── ToolClassLibrary.pdb
│   │       └── fig.dll
│   ├── frmCloseWindows.cs
│   ├── frmCloseWindows.designer.cs
│   ├── frmCloseWindows.resx
│   └── obj
│       └── x86
│           ├── Debug
│           │   ├── DesignTimeResolveAssemblyReferences.cache
│           │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│           │   ├── GenerateResource.read.1.tlog
│           │   ├── GenerateResource.write.1.tlog
│           │   ├── MagicCony.frmCloseWindows.resources
│           │   ├── OptimizeToolToolForm.Form2.resources
│           │   ├── OptimizeToolToolForm.Form4.resources
│           │   ├── OptimizeToolToolForm.Form7.resources
│           │   ├── OptimizeToolToolForm.Form8.resources
│           │   ├── OptimizeToolToolForm.FormMenu.ParentForm.resources
│           │   ├── OptimizeToolToolForm.Properties.Resources.resources
│           │   ├── OptimizeToolToolForm.WindowMenu.resources
│           │   ├── OptimizeToolToolForm.csproj.FileListAbsolute.txt
│           │   ├── ResolveAssemblyReference.cache
│           │   └── TempPE
│           │       └── Properties.Resources.Designer.cs.dll
│           └── Release
│               ├── DesignTimeResolveAssemblyReferences.cache
│               ├── DesignTimeResolveAssemblyReferencesInput.cache
│               ├── GenerateResource.read.1.tlog
│               ├── GenerateResource.write.1.tlog
│               ├── MagicCony.frmCloseWindows.resources
│               ├── OptimizeToolToolForm.Form2.resources
│               ├── OptimizeToolToolForm.Form4.resources
│               ├── OptimizeToolToolForm.Form7.resources
│               ├── OptimizeToolToolForm.Form8.resources
│               ├── OptimizeToolToolForm.FormMenu.ParentForm.resources
│               ├── OptimizeToolToolForm.Properties.Resources.resources
│               ├── OptimizeToolToolForm.WindowMenu.resources
│               ├── OptimizeToolToolForm.csproj.FileListAbsolute.txt
│               ├── OptimizeToolToolForm.csproj.GenerateResource.Cache
│               ├── OptimizeToolToolForm.csprojResolveAssemblyReference.cache
│               ├── OptimizeToolToolForm.exe
│               ├── OptimizeToolToolForm.pdb
│               ├── ResolveAssemblyReference.cache
│               └── TempPE
│                   └── Properties.Resources.Designer.cs.dll
├── Package
│   ├── Class1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── ICSharpCode.SharpZipLib.dll
│   ├── Package.csproj
│   ├── Program.cs
│   ├── ProjectInstaller.Designer.cs
│   ├── ProjectInstaller.cs
│   ├── ProjectInstaller.resx
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Resources
│   ├── Service1.Designer.cs
│   ├── Service1.cs
│   ├── Service1.resx
│   ├── bin
│   │   ├── Debug
│   │   └── Release
│   └── obj
│       └── x86
│           ├── Debug
│           │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│           │   ├── GenerateResource.read.1.tlog
│           │   ├── GenerateResource.write.1.tlog
│           │   ├── Package.Form1.resources
│           │   ├── Package.Properties.Resources.resources
│           │   ├── Package.csproj.FileListAbsolute.txt
│           │   └── TempPE
│           └── Release
│               ├── DesignTimeResolveAssemblyReferences.cache
│               ├── DesignTimeResolveAssemblyReferencesInput.cache
│               ├── GenerateResource.read.1.tlog
│               ├── GenerateResource.write.1.tlog
│               ├── Package.Form1.resources
│               ├── Package.ProjectInstaller.resources
│               ├── Package.Properties.Resources.resources
│               ├── Package.Service1.resources
│               ├── Package.csproj.FileListAbsolute.txt
│               ├── ResolveAssemblyReference.cache
│               └── TempPE
│                   └── Properties.Resources.Designer.cs.dll
├── ToolClassLibrary
│   ├── ConfigClass
│   │   └── ConfigClass.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── StaticClass
│   │   ├── BitmapRegion.cs
│   │   ├── EcanQQ.cs
│   │   ├── ErrorLog.cs
│   │   ├── FileBear.cs
│   │   ├── Files.cs
│   │   ├── ImageFormClass.cs
│   │   ├── Input.cs
│   │   ├── PublicClass.cs
│   │   └── ejzText.cs
│   ├── SystemToolClass
│   │   └── SystemTool.cs
│   ├── ToolClassLibrary.csproj
│   ├── Win32.cs
│   ├── bin
│   │   ├── Debug
│   │   └── Release
│   │       ├── ImageLibrary.dll
│   │       ├── ImageLibrary.pdb
│   │       ├── ToolClassLibrary.dll
│   │       └── ToolClassLibrary.pdb
│   └── obj
│       ├── Debug
│       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   ├── ResolveAssemblyReference.cache
│       │   ├── TempPE
│       │   ├── ToolClassLibrary.csproj.FileListAbsolute.txt
│       │   ├── ToolClassLibrary.dll
│       │   └── ToolClassLibrary.pdb
│       └── Release
│           ├── DesignTimeResolveAssemblyReferencesInput.cache
│           ├── ResolveAssemblyReference.cache
│           ├── TempPE
│           ├── ToolClassLibrary.csproj.FileListAbsolute.txt
│           ├── ToolClassLibrary.csprojResolveAssemblyReference.cache
│           ├── ToolClassLibrary.dll
│           └── ToolClassLibrary.pdb
└── 工具
    └── SharpZipLib_0860_Bin.zip

74 directories, 264 files



标签: 电脑 源码 C#

实例下载地址

c#仿电脑管家源码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警