资源简介
功能强大的C#远程控制软件整个项目代码,功能非常完整,代码可以顺利编译,类似灰鸽子的大部分功能,硬盘浏览,屏幕监控控制,注册表,视频,命令行,命令广播,文件传输,进程等都齐全,差不多灰鸽子有的功能都有了,值得学习!!
代码片段和文件信息
/******************************************
* 版权所有jackch
* QQ:106050555
* E-mail:jackch88@hotmail.com
* 个人Blog:http://www.jackch.cn
* CSDN_Blog:http://blog.csdn.net/jackch88/
* ****************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;
namespace Jackch
{
partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
this.Text = String.Format(“About {0}“ Assemblytitle);
this.labelProductName.Text = String.Format(“Product:{0}“ AssemblyProduct);
this.labelVersion.Text = String.Format(“Version:Beta{0}“ AssemblyVersion);
this.labelCopyright.Text = String.Format(“Copyright:{0}“ AssemblyCopyright);
this.labelCompanyName.Text = String.Format(“Company:{0}“ AssemblyCompany);
this.textBoxDescription.Text = AssemblyDescription;
}
#region Assembly Attribute Accessors
public string Assemblytitle
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblytitleAttribute) false);
if (attributes.Length > 0)
{
AssemblytitleAttribute titleAttribute = (AssemblytitleAttribute)attributes[0];
if (titleAttribute.title != ““)
{
return titleAttribute.title;
}
}
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().Codebase);
}
}
public string AssemblyVersion
{
get
{
return Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
public string AssemblyDescription
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute) false);
if (attributes.Length == 0)
{
return ““;
}
return ((AssemblyDescriptionAttribute)attributes[0]).Description;
}
}
public string AssemblyProduct
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute) false);
if (attributes.Length == 0)
{
return ““;
}
return ((AssemblyProductAttribute)attributes[0]).Product;
}
}
public string AssemblyCopyright
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().G
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3762 2008-01-21 13:25 TwoCare\Client\AboutForm.cs
文件 10467 2008-01-21 13:25 TwoCare\Client\AboutForm.Designer.cs
文件 49723 2008-01-21 13:25 TwoCare\Client\AboutForm.resx
文件 6811008 2007-11-15 17:48 TwoCare\Client\bin\Debug\IP.Dat
文件 32768 2008-01-21 13:29 TwoCare\Client\bin\Debug\Jackch.dll
文件 71168 2008-01-21 13:29 TwoCare\Client\bin\Debug\Jackch.pdb
文件 77240 2002-09-02 00:00 TwoCare\Client\bin\Debug\Sound\downfile.wav
文件 90476 2002-09-02 00:00 TwoCare\Client\bin\Debug\Sound\loginon.wav
文件 88514 2002-09-02 00:00 TwoCare\Client\bin\Debug\Sound\loginout.wav
文件 75326 2002-09-02 00:00 TwoCare\Client\bin\Debug\Sound\upfile.wav
文件 37376 2008-01-21 13:29 TwoCare\Client\bin\Debug\TabStrip.dll
文件 110080 2008-01-21 13:29 TwoCare\Client\bin\Debug\TabStrip.pdb
文件 451584 2008-01-21 13:29 TwoCare\Client\bin\Debug\TwoCare.exe
文件 261632 2008-01-21 13:29 TwoCare\Client\bin\Debug\TwoCare.pdb
文件 3584 2008-01-21 13:29 TwoCare\Client\bin\Debug\zh-CHS\TwoCare.resources.dll
文件 8692 2008-01-21 13:29 TwoCare\Client\Client.csproj
文件 502 2007-10-09 16:40 TwoCare\Client\Client.csproj.user
文件 1087 2008-01-21 13:25 TwoCare\Client\CmdForm.cs
文件 2804 2007-10-30 14:27 TwoCare\Client\CmdForm.Designer.cs
文件 9474 2007-10-30 14:27 TwoCare\Client\CmdForm.resx
文件 590 2008-01-21 13:25 TwoCare\Client\ConfigForm.cs
文件 2660 2007-11-06 22:08 TwoCare\Client\ConfigForm.Designer.cs
文件 5814 2007-11-06 22:08 TwoCare\Client\ConfigForm.resx
文件 1729 2008-01-21 13:26 TwoCare\Client\DeviceSelector.cs
文件 5041 2007-06-20 08:51 TwoCare\Client\DeviceSelector.Designer.cs
文件 5814 2007-06-20 08:51 TwoCare\Client\DeviceSelector.resx
文件 34594 2008-01-21 13:26 TwoCare\Client\File.cs
文件 929 2008-01-21 13:26 TwoCare\Client\FontForm.cs
文件 2943 2007-12-06 22:16 TwoCare\Client\FontForm.Designer.cs
文件 6008 2007-12-06 22:16 TwoCare\Client\FontForm.resx
............此处省略240个文件信息
相关资源
- C# 利用ListView空间导航数据库信息
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
评论
共有 条评论