登录
首页 » C# » C# 远程监控 完整项目源码下载(含监控端和受控端)

C# 远程监控 完整项目源码下载(含监控端和受控端)

于 2014-04-02 发布
0 195
下载积分: 1 下载次数: 0

代码说明:

C# 远程监控 完整项目源码下载(含监控端和受控端)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 音播报
    【实例简介】
    2022-01-12 00:32:37下载
    积分:1
  • 截取屏幕/桌面,截图并保存图片到本机 实例完整源码下载
    截取屏幕/桌面,截图并保存图片到本机 实例完整源码下载
    2013-10-03下载
    积分:1
  • 收银系统(源码+数据库)
    【实例简介】世纪华联超市-收银系统源码
    2021-10-11 00:31:03下载
    积分:1
  • GDI树状图 例子源码下载
    GDI树状图 例子源码下载
    2015-05-23下载
    积分:1
  • C# 文件上传和下载(上传文件到服务端)
    实现文件上传和下载,包含服务器和客户端 对于学习TCP的同学有帮助
    2021-03-21 22:09:16下载
    积分:1
  • C# 套打Demo
    套打Demo 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Printing;namespace Print_Demo{ public partial class Form1 : Form { public PrintDocument printDt = new PrintDocument(); //打印文档对象 Font printFont; //打印使用的字体 public Form1() { InitializeComponent(); } void printDt_PrintPage(object sender, PrintPageEventArgs e) { float pointX = 10; float pointY = 10; e.Graphics.DrawString("打印内容", new Font("宋体", 16F), Brushes.Black, pointX 60, pointY); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 26,pointX 300,pointY 26); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 35); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 56, pointX 300, pointY 56); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 65); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 86, pointX 300, pointY 86); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 95); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 116, pointX 300, pointY 116); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 125); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 146, pointX 300, pointY 146); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 155); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 176, pointX 300, pointY 176); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 185); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 206, pointX 300, pointY 206); e.Graphics.DrawString("检测结果", printFont, Brushes.Black, pointX, pointY 233); e.Graphics.DrawString("通过", new Font("宋体",22F,FontStyle.Bold), Brushes.Black, pointX 90, pointY 225); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 265, pointX 300, pointY 265); e.Graphics.DrawString("单位名称", printFont, Brushes.Black, pointX, pointY 275); } private void Form1_Load(object sender, EventArgs e) { printDt.PrintPage = new PrintPageEventHandler(printDt_PrintPage); printFont = new Font("宋体", 12F); } private void btnPrint_Click(object sender, EventArgs e) { //PrintDialog printDlg = new PrintDialog(); //printDlg.Document = printDt; //printDlg.AllowPrintToFile = true; //printDlg.AllowCurrentPage = true; //printDlg.AllowSelection = true; //printDlg.ShowDialog(); //printDlg.ShowDialog(); printDt.Print(); } private void btnLook_Click(object sender, EventArgs e) { PrintPreviewDialog printPreview = new PrintPreviewDialog(); printPreview.PrintPreviewControl.Document = printDt; printPreview.ShowDialog(this); } }}
    2021-05-06下载
    积分:1
  • c#文件读写示例代码下载
    c#文件读写示例代码下载
    2015-04-23下载
    积分:1
  • C# ftp 下载类源码
    C# ftp 下载类源码
    2013-11-28下载
    积分:1
  • c#与西门子s7-200 smart 通讯实例 S7TCPDLL.dll
    【实例简介】 c#与西门子s7-200 smart 通讯实例 内附S7TCPDLL.dll 【使用说明】 在bin文件夹debug,config文件打开配置PLC IP地址,CPU 的信息 修改配置文件 [PlcComTCP] IP=192.168.0.1  //PLC IP地址 Rack=0          //PLC 机架 Slot=1          //PLC 插槽 注,PLC和电脑 IP必须在同一网段 S7TCPDLL使用方法 1)添加引用,然后倒入命名空间 using S7TCPDLL; 2)实例化函数 S7Client 例如:   S7Client client = new S7Client(); 然后利用VS开发平台智能感知的功能可选择相应函数 例如调用置位函数 SetBitQB(0, 0)        首先实例化函数S7Client client = new S7Client();        然后 client.SetBitQB(0, 0); 调用其他函数类似。
    2021-05-18 10:33:07下载
    积分:1
  • C#爬虫实现百度图片下载器和小说阅读器
    百度图片下载器输入关键字选择图片类型下载到指定目录下;小说阅读器爬取的是笔趣阁网站,依次获取小说分类、小说名称、小说章节以及章节内容,可实现对当前小说的下载、暂停下载和恢复下载。程序实现都涉及到了多线程的知识。两个项目,血赚不亏!
    2020-12-06下载
    积分:1
  • 696518资源总数
  • 106155会员总数
  • 8今日下载