欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

C#實(shí)現(xiàn)簡(jiǎn)單屏幕監(jiān)控的方法

 更新時(shí)間:2015年04月22日 09:29:23   作者:igoo  
這篇文章主要介紹了C#實(shí)現(xiàn)簡(jiǎn)單屏幕監(jiān)控的方法,涉及C#的圖標(biāo)隱藏及屏幕截圖等技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了C#實(shí)現(xiàn)簡(jiǎn)單屏幕監(jiān)控的方法。分享給大家供大家參考。具體如下:

這是一段C#編寫的屏幕監(jiān)控代碼,可以自動(dòng)對(duì)屏幕進(jì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() 
  { 
   //主窗體桌面不顯示 僅在進(jìn)程中顯示 
   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) 
  { 
   //獲得當(dāng)前屏幕的大小 
   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控件 
  } 
 } 
}

希望本文所述對(duì)大家的C#程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論