【C#】【源码】直接可用的远程桌面应用

【背景】

封闭环境无法拷贝外来的远程桌面软件,所以就直接自己用C#写一个。

【效果】

在这里插入图片描述

【说明】

本篇会给出完整的编程步骤,照着写就能拥有你自己的远程桌面应用,直接可以运行在局域网。
如果不想自己敲代码,也可以选择直接下载项目资源,解包后直接用VS2019打开即可运行或自行打包成exe:
https://download.csdn.net/download/weixin_41697242/88350078

【设计】

远程桌面需要一个服务端,一个客户端,各自是一个项目文件。
本项目中客户端分享画面(发送截屏数据流),服务端则是监听并接收画面,因此服务端需要两个Form(窗体)。

【项目源码】

客户端UI

只需要一个Form1,布局如下:
在这里插入图片描述
具体组件和属性设置如下:
Label1,text改为IP即可;
Label2,text改为Port即可;
textbox1,名称改为txtIP;
textbox2,名称改为txtPort,text改为80
button1,text改为Connect,名称改为btnConnect
button2,text改为ShareScreen,名称改为btnShare

客户端源码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;using System.Net.Sockets;
using System.Drawing.Imaging;
using System.Runtime.Serialization.Formatters.Binary;namespace OriginalClient
{public partial class Form1 : Form{private readonly TcpClient client = new TcpClient();private NetworkStream mainStream;private int portNumber;private static Image GrabDesktop(){Rectangle bound = Screen.PrimaryScreen.Bounds;Bitmap screenshot = new Bitmap(bound.Width, bound.Height, PixelFormat.Format32bppArgb);Graphics graphics = Graphics.FromImage(screenshot);graphics.CopyFromScreen(bound.X, bound.Y, 0, 0, bound.Size, CopyPixelOperation.SourceCopy);return screenshot;}private void SendDesktopImage(){BinaryFormatter binFormatter = new BinaryFormatter();mainStream = client.GetStream();binFormatter.Serialize(mainStream, GrabDesktop());}public Form1(){InitializeComponent();}private void Form1_Load(object sender, EventArgs e){btnShare.Enabled = false;}private void btnConnect_Click(object sender, EventArgs e){portNumber = int.Parse(txtPort.Text);try{client.Connect(txtIP.Text, portNumber);btnConnect.Text = "Connected";MessageBox.Show("Connected");btnConnect.Enabled = false;btnShare.Enabled = true;}catch (Exception){MessageBox.Show("Failed to connect");btnConnect.Text = "Not Connected";}}private void btnShare_Click(object sender, EventArgs e){if (btnShare.Text.StartsWith("Share")){timer1.Start();btnShare.Text = "Stop Sharing";}else {timer1.Stop();btnShare.Text = "Share My Screen";}}private void timer1_Tick(object sender, EventArgs e){SendDesktopImage();}}
}

服务端UI

Form1

在这里插入图片描述
textBox1,name设置为txtPort
button1,name设置为btnListen

Form1代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;namespace OriginalServer
{public partial class Form1 : Form{public Form1(){InitializeComponent();}private void Form1_Load(object sender, EventArgs e){}private void btnListen_Click(object sender, EventArgs e){new Form2(int.Parse(txtPort.Text)).Show();btnListen.Enabled = false;}}
}

Form2

源项目中追加一个窗体。
一个窗体里放一个imageBox,mode设置为zoom,dock设置为停靠。

Form2源码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;using System.Net.Sockets;
using System.Net;
using System.Threading;
using System.Runtime.Serialization.Formatters.Binary;namespace OriginalServer
{public partial class Form2 : Form{private readonly int port;private TcpClient client;private TcpListener server;private NetworkStream mainStream;private readonly Thread Listening;private readonly Thread GetImage;public Form2(int Port){port = Port;client = new TcpClient();Listening = new Thread(StartListening);GetImage = new Thread(Receiveimage);InitializeComponent();}private void StartListening(){while (!client.Connected) {server.Start();client = server.AcceptTcpClient();}GetImage.Start();}private void StopListening() {server.Stop();client = null;if (Listening.IsAlive) Listening.Abort();if (GetImage.IsAlive) Listening.Abort();}private void Receiveimage(){BinaryFormatter binFormatter = new BinaryFormatter();while (client.Connected) {mainStream = client.GetStream();pictureBox1.Image = (Image)binFormatter.Deserialize(mainStream);}}protected override void OnLoad(EventArgs e){base.OnLoad(e);server = new TcpListener(IPAddress.Any, port);Listening.Start();}protected override void OnFormClosing(FormClosingEventArgs e){base.OnFormClosing(e);StopListening();}private void pictureBox1_Click(object sender, EventArgs e){}private void Form2_Load(object sender, EventArgs e){}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/81267.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Redis环境配置

【Redis解压即可】链接:https://pan.baidu.com/s/1y4xVLF8-8PI8qrczbxde9w?pwd0122 提取码:0122 【Redis桌面工具】 链接:https://pan.baidu.com/s/1IlsUy9sMfh95dQPeeM_1Qg?pwd0122 提取码:0122 Redis安装步骤 1.先打开Redis…

OPENCV实现DNN图像分类

使用步骤1 使用步骤2 使用步骤3 使用步骤4 使用步骤5 使用步骤6 完整代码如下: import numpy as np

线程的方法(未完成)

线程的方法 1、sleep(long millis) 线程休眠:让执行的线程暂停一段时间,进入计时等待状态。 static void sleep(long millis):调用此方法后,当前线程放弃 CPU 资源,在指定的时间内,sleep 所在的线程不会获得可运行的机…

解决MySQL8.0本地计算机上的MySQL服务启动后停止没有报告任何错误

1.启动MySQL的错误信息如下 (1)“本地计算机上的MySQL服务启动后停止。某些服务在未由其他服务或程序使用时将自动停止。” (2)又在PowerShell中运行"net start MySQL",服务启动失败。“MySQL 服务无法启…

The Importance of Reliability for Startup Success

Performance might not be a problem for your startup,but reliability probably is Customers don’t like paying for services that go offline.I know this from personal experience,I’ve been on both sides of that situation.I’ve maintained some really unreliabl…

MyBatis初级

文章目录 一、mybatis1、概念2、JDBC缺点2.1、之前jdbc操作2.2 、原始jdbc操作的分析 3、mybatis的使用3.1、导入maven依赖3.2、新建表3.3、实体类3.4、编写mybatis的配置文件3.5、编写接口 和 映射文件3.6、编写测试类3.7、注意事项 4、代理方式开发5、mybatis和spring整合5.1…

Linux Arm64修改页表项属性

文章目录 前言一、获取pte1.1 pgd_offset1.2 pud_offset1.3 pmd_offset1.4 pte_offset_kernel 二、修改pte属性2.1 set/clear_pte_bit2.2 pte_wrprotect2.3 pte_mkwrite2.4 pte_mkclean2.5 pte_mkdirty 三、set_pte_at四、__flush_tlb_kernel_pgtable五、demo参考资料 前言 在…

二进制 Deploy Kubernetes v1.23.17 超级详细部署

文章目录 1. 预备条件2. 基础配置2.1 配置root远程登录2.2 配置主机名2.3 安装 ansible2.4 配置互信2.5 配置hosts文件2.6 关闭防firewalld火墙2.7 关闭 selinux2.8 关闭交换分区swap2.9 修改内核参数2.10 安装iptables2.11 开启ipvs2.12 配置limits参数2.13 配置 yum2.14 配置…

不可变集合的详细概述

1.不可变集合 1.1 什么是不可变集合 是一个长度不可变,内容也无法修改的集合 1.2 使用场景 如果某个数据不能被修改,把它防御性地拷贝到不可变集合中是个很好的实践。 当集合对象被不可信的库调用时,不可变形式是安全的。 简单理解&…

基于Spring Boot+vue的酒店管理系统

文章目录 项目介绍主要功能截图:前台后台部分代码展示设计总结项目获取方式🍅 作者主页:超级无敌暴龙战士塔塔开 🍅 简介:Java领域优质创作者🏆、 简历模板、学习资料、面试题库【关注我,都给你】 🍅文末获取源码联系🍅 项目介绍 基于Spring Boot+vue的酒店管理…

什么是 BSD 协议?

BSD开源协议是一个给于使用者很大自由的协议。可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。当你发布使用了BSD协议的代码,或者以BSD协议代码为基础做二次开发自己的产品时,需要满足三个条件&…

Git的ssh方式如何配置,如何通过ssh方式拉取和提交代码

git的ssh配置 HTTPS和SSH的区别设置SSH方式配置单个仓库配置账户公钥 大家通过git拉取代码的时候,一般都是通过http的方式,简单方便。但是细心的童鞋肯定也注意到Git也是支持ssh方式的。可能很多人也试过使用这个方式,但是好像没有那么简单。…

Python爬虫实战案例——第五例

文章中所有内容仅供学习交流使用,不用于其他任何目的!严禁将文中内容用于任何商业与非法用途,由此产生的一切后果与作者无关。若有侵权,请联系删除。 目标:采集三国杀官网的精美壁纸 地址:aHR0cHM6Ly93d3…

IDEA2023.2.1中创建第一个Tomcat的web项目

首先,创建一个普通的java项目。点击【file】-【new】-【project】 创建一个TomcatDemo项目 创建如下图 添加web部门。点击【file】-【project structure】 选择【modules】-选中项目“TomcatDemo” 点击项目名上的加号【】,添加【web】模块 我们就会发现…

网络协议学习地图分享

最近在回顾网络知识点的时候,发现华为数通有关报文格式及网络协议地图神仙网站,这里涵盖了各个协议层及每个协议层对应的协议内容,最人性的化的一点是点击每个单独的协议可以跳转到该协议详细报文格式页面,有对应的说明和解释&…

单片机内存管理

源码说明 源码包含memory.h 和 memory.c 两个文件(嵌入式C/C代码的“标配”),其源码中包含重要的注释。 memory.h文件包含结构体等定义,函数API申明等; memory.c文件是实现内存管理相关API函数的原型。 memory.h …

【JAVA-Day22】深度解析 Java 的包机制

深度解析 Java 的包机制 深度解析 Java 的包机制摘要引言一、什么是包机制1.1 包的定义1.2 包的命名规范1.3 包的声明1.4 包的导入1.5 包的访问权限1.6 包的层次结构1.7 包的目录结构 二、包的命名冲突问题三、总结参考资料 博主 默语带您 Go to New World. ✍ 个人主页—— 默…

​全球人类读书会《乡村振兴战略下传统村落文化旅游设计》中国建筑出版传媒许少辉博士著作

​全球人类读书会《乡村振兴战略下传统村落文化旅游设计》中国建筑出版传媒许少辉博士著作

Open3D 网格体素化(C++版本)

文章目录 一、简介二、实现代码三、实现效果参考资料一、简介 点云和三角形网格是非常灵活的,但它们都属于不规则的几何类型。体素网格是在常规3D网格上定义的另一种3D几何类型,且体素可以被认为是2D像素的3D对应物。Open3D理所当然的提供了体素几何类型VoxelGrid,可用于处理…

linux服务器slab缓存回收方案设计

背景 自己写的回收slab内存ko,insmod报错“shrink_slab:unknown symbol _x86_indirect_thunk_rax(err 0)””; 分析 1.名词解释 在 x86 架构中,函数调用通常使用 call 指令来直接跳转到目标函数的地址。但是,当需要通过函数指针或动态链接调用函数时,就需要使用__x86_…