• 大小: 0.06M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 共享  桌面  

资源简介

通过TCP/IP协议,截屏的方式,广播发送桌面图片

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Threading;

namespace hkDebugForm
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            Image img_Screen = GetJpgFromBmp(GetScreenShot());
            img_Screen.Save(Application.StartupPath + “/1.jpg“ System.Drawing.Imaging.ImageFormat.Jpeg);
            Thread.Sleep(3000);
            MemoryStream mStream = new MemoryStream();
            BinaryFormatter bf = new BinaryFormatter();
            bf.Serialize(mStream (object)img_Screen);
            byte[] buffer = 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2099  2011-03-10 16:46  hkDebugForm\Form1.cs

     文件       1403  2011-03-10 16:42  hkDebugForm\Form1.Designer.cs

     文件       5814  2011-03-10 16:42  hkDebugForm\Form1.resx

     文件       3768  2011-03-10 16:37  hkDebugForm\hkDebugForm.csproj

     文件        492  2011-03-10 16:29  hkDebugForm\Program.cs

     文件       1378  2011-03-10 16:29  hkDebugForm\Properties\AssemblyInfo.cs

     文件       2872  2011-03-10 16:29  hkDebugForm\Properties\Resources.Designer.cs

     文件       5612  2011-03-10 16:29  hkDebugForm\Properties\Resources.resx

     文件       1096  2011-03-10 16:29  hkDebugForm\Properties\Settings.Designer.cs

     文件        249  2011-03-10 16:29  hkDebugForm\Properties\Settings.settings

     文件      10752  2011-03-11 09:37  hkDesktopShare.Client\bin\Debug\hkDesktopShare.Client.exe

     文件      22016  2011-03-11 09:37  hkDesktopShare.Client\bin\Debug\hkDesktopShare.Client.pdb

     文件      14328  2011-03-10 17:52  hkDesktopShare.Client\bin\Debug\hkDesktopShare.Client.vshost.exe

     文件       2936  2011-03-11 09:37  hkDesktopShare.Client\Client.cs

     文件       3856  2011-03-10 17:18  hkDesktopShare.Client\Client.Designer.cs

     文件       5814  2011-03-10 17:18  hkDesktopShare.Client\Client.resx

     文件       3833  2011-03-11 09:36  hkDesktopShare.Client\hkDesktopShare.Client.csproj

     文件        483  2011-03-11 09:37  hkDesktopShare.Client\Program.cs

     文件       1398  2011-03-10 10:57  hkDesktopShare.Client\Properties\AssemblyInfo.cs

     文件       2892  2011-03-10 10:57  hkDesktopShare.Client\Properties\Resources.Designer.cs

     文件       5612  2011-03-10 10:57  hkDesktopShare.Client\Properties\Resources.resx

     文件       1106  2011-03-10 10:57  hkDesktopShare.Client\Properties\Settings.Designer.cs

     文件        249  2011-03-10 10:57  hkDesktopShare.Client\Properties\Settings.settings

     文件      12288  2011-03-11 09:37  hkDesktopShare.Server\bin\Debug\hkDesktopShare.Server.exe

     文件      14328  2011-03-11 09:36  hkDesktopShare.Server\bin\Debug\hkDesktopShare.Server.vshost.exe

     文件        490  2007-07-21 01:33  hkDesktopShare.Server\bin\Debug\hkDesktopShare.Server.vshost.exe.manifest

     文件       3674  2011-03-11 09:36  hkDesktopShare.Server\hkDesktopShare.Server.csproj

     文件        483  2011-03-11 09:36  hkDesktopShare.Server\Program.cs

     文件       1398  2011-03-10 10:57  hkDesktopShare.Server\Properties\AssemblyInfo.cs

     文件       2892  2011-03-10 10:57  hkDesktopShare.Server\Properties\Resources.Designer.cs

............此处省略21个文件信息

评论

共有 条评论