C#實現(xiàn)簡單屏幕監(jiān)控的方法
更新時間:2015年04月22日 09:29:23 作者:igoo
這篇文章主要介紹了C#實現(xiàn)簡單屏幕監(jiān)控的方法,涉及C#的圖標隱藏及屏幕截圖等技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了C#實現(xiàn)簡單屏幕監(jiān)控的方法。分享給大家供大家參考。具體如下:
這是一段C#編寫的屏幕監(jiān)控代碼,可以自動對屏幕進行截圖,軟件自身隱藏
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;
namespace Screen
{
public partial class Form1 : Form
{
public Form1()
{
//主窗體桌面不顯示 僅在進程中顯示
InitializeComponent();
this.WindowState = FormWindowState.Minimized;
this.ShowInTaskbar = false;
SetVisibleCore(false);
}
protected override void SetVisibleCore(bool value)
{
base.SetVisibleCore(value);
}
private void timer1_Tick(object sender, EventArgs e)
{
//獲得當前屏幕的大小
Rectangle rect = new Rectangle();
rect = System.Windows.Forms.Screen.GetWorkingArea(this);
Size mySize = new Size(rect.Width, rect.Height);
Bitmap bitmap = new Bitmap(rect.Width, rect.Height);
Graphics g = Graphics.FromImage(bitmap);
g.CopyFromScreen(0, 0, 0, 0, mySize);
string ImageName = DateTime.Now.ToString("yyyyMMdd_hhmmss") + ".jpg";
bitmap.Save("F://screen//" + ImageName);
//釋放資源
bitmap.Dispose();
g.Dispose();
GC.Collect();
}
private void Form1_Load(object sender, EventArgs e)
{
timer1.Enabled = true;//激活timer控件
}
}
}
希望本文所述對大家的C#程序設計有所幫助。
相關文章
使用MSScriptControl 在 C# 中讀取json數(shù)據的方法
下面小編就為大家?guī)硪黄褂肕SScriptControl 在 C# 中讀取json數(shù)據的方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-01-01
Winform使用DataGridView實現(xiàn)下拉篩選
這篇文章主要為大家詳細介紹了Winform如何使用原生DataGridView實現(xiàn)下拉篩選功能,文中的示例代碼講解詳細,感興趣的小伙伴可以跟隨小編一起了解一下2023-09-09

