登录
首页 » C# » WPF远程监控系统

WPF远程监控系统

于 2017-03-02 发布
0 244
下载积分: 1 下载次数: 1

代码说明:

(1)将服务端部署到一台服务器上,然后启动OMCS.Server.exe。(2)修改客户端配置文件中的服务器的IP,在一台机器上启动客户端,登录一个帐号,比如aa01.(3)在另一台机器上启动客户端,登录另一个帐号,比如aa02.(4)aa01可以在主界面的TextBox中中输入aa02,并点击后面的按钮,来连接aa02的视频。(5)aa02也可以在其UI中输入aa01,并点击后面的按钮,来连接aa01的视频。(6)测试视讯时,两个客户端最好在不同的房间。(7)测试白板时,需要连接到同一个用户的白板,才能协同。

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

发表评论

0 个回复

  • 采集软件源码
    采集软件源码
    2013-12-08下载
    积分:1
  • c# 获取访问的IP地址(归属地)例子源码下载
    c# 获取访问的IP地址(归属地)例子源码下载
    2015-03-23下载
    积分:1
  • C#会员管理条码版(含数据库)
    数据库连接字符串 在program.cs中记账管理系统源码功能列表一、日常操作 1.消费单据:新增、修改、结算、点牌核实、查询(按日期、消费单号查询) 2.会员管理:新增、修改、新增消费、会员充值、查看消费记录、查看充值记录、会员换卡、余额转账、查询(按姓名、卡号) 3.账目清单:新增、修改、删除(需要密码)、按日期查询二、统计报表 1.会员消费统计:按日期查询、按会员卡号查询 2.会员续费统计:按日期查询、按会员卡号查询 3.员工工资统计:按月份查询、显示内容() 4.每月收支汇总:按月份查询、按日期显示、显示内容(日期、星期、散客现金收入 充值收入 其它收入=收入金额、支出金额、盈亏金额)三、系统维护 1.商品信息管理:新增商品、修改商品、商品上架、商品下架、查询        2.会员卡设置:新增、修改、删除、查询        3.收支科目管理:新增、修改、禁用、启用、查询        4.职位信息管理:查询、新增、修改、删除        5.员工信息管理:按职位查询、显示离职员工、新增、修改、查看业绩、 6.员工扣款记录:新增、修改、删除、查询(修改与删除功能只能操作本月数据)
    2020-12-03下载
    积分:1
  • sha256源代码
    sha256源代码
    2020-12-11下载
    积分: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
  • messageBox居中父窗体
    【实例简介】自带的messagebox只能居中屏幕 ,改进后居中父窗体
    2021-08-08 00:30:57下载
    积分:1
  • C# 网站采集例子源码
    C# 网站采集例子源码
    2015-06-01下载
    积分:1
  • C# 农历 操作常用类 源码
    C# 农历 操作常用类 源码
    2014-06-11下载
    积分:1
  • 于51的蓝牙遥控小车
    蓝牙模块:hc-06 51单片机 驱动模块:L28N
    2021-05-07下载
    积分:1
  • web在线编辑器例子源码下载(ueditor)
    web在线编辑器例子源码下载(ueditor)
    2015-05-27下载
    积分:1
  • 696516资源总数
  • 106562会员总数
  • 4今日下载