Form1.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:4k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.Data;
  7. using System.Drawing.Imaging;
  8. namespace zhua2
  9. {
  10. /// <summary>
  11. /// Form1 的摘要说明。
  12. /// </summary>
  13. public class Form1 : System.Windows.Forms.Form
  14. {
  15. private System.Windows.Forms.Button button1;
  16. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  17. /// <summary>
  18. /// 必需的设计器变量。
  19. /// </summary>
  20. private System.ComponentModel.Container components = null;
  21. public Form1()
  22. {
  23. //
  24. // Windows 窗体设计器支持所必需的
  25. //
  26. InitializeComponent();
  27. //
  28. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  29. //
  30. }
  31. /// <summary>
  32. /// 清理所有正在使用的资源。
  33. /// </summary>
  34. protected override void Dispose( bool disposing )
  35. {
  36. if( disposing )
  37. {
  38. if (components != null) 
  39. {
  40. components.Dispose();
  41. }
  42. }
  43. base.Dispose( disposing );
  44. }
  45. #region Windows 窗体设计器生成的代码
  46. /// <summary>
  47. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  48. /// 此方法的内容。
  49. /// </summary>
  50. private void InitializeComponent()
  51. {
  52. this.button1 = new System.Windows.Forms.Button();
  53. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  54. this.SuspendLayout();
  55. // 
  56. // button1
  57. // 
  58. this.button1.Location = new System.Drawing.Point(80, 32);
  59. this.button1.Name = "button1";
  60. this.button1.Size = new System.Drawing.Size(112, 24);
  61. this.button1.TabIndex = 1;
  62. this.button1.Text = "开始抓图";
  63. this.button1.Click += new System.EventHandler(this.button1_Click);
  64. // 
  65. // saveFileDialog1
  66. // 
  67. this.saveFileDialog1.FileName = "doc1";
  68. this.saveFileDialog1.Filter = "jpg Files(*.jpg)|*.jpg|jpeg Files(*.*)|*.jpeg|bmp Files(*.bmp)|*.bmp";
  69. // 
  70. // Form1
  71. // 
  72. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  73. this.ClientSize = new System.Drawing.Size(292, 93);
  74. this.Controls.Add(this.button1);
  75. this.Name = "Form1";
  76. this.Text = "抓图软件";
  77. this.ResumeLayout(false);
  78. }
  79. #endregion
  80. /// <summary>
  81. /// 应用程序的主入口点。
  82. /// </summary>
  83. [STAThread]
  84. static void Main() 
  85. {
  86. Application.Run(new Form1());
  87. }
  88. //调用动态链接库gdi32.dll
  89. [ System.Runtime.InteropServices.DllImportAttribute ( "gdi32.dll" ) ]
  90. private static extern bool BitBlt (
  91. IntPtr hdcDest , //目标设备的句柄
  92. int nXDest , // 目标对象的左上角的X坐标
  93. int nYDest , // 目标对象的左上角的X坐标
  94. int nWidth , // 目标对象的矩形的宽度
  95. int nHeight , // 目标对象的矩形的长度
  96. IntPtr hdcSrc , // 源设备的句柄
  97. int nXSrc , // 源对象的左上角的X坐标
  98. int nYSrc , // 源对象的左上角的X坐标
  99. System.Int32 dwRop // 光栅的操作值
  100. ) ;
  101. //调用动态链接库gdi32.dll
  102. [ System.Runtime.InteropServices.DllImportAttribute ( "gdi32.dll" ) ]
  103. private static extern IntPtr CreateDC (
  104. string lpszDriver , // 驱动名称
  105. string lpszDevice , // 设备名称
  106. string lpszOutput , // 无用,可以设定位"NULL"
  107. IntPtr lpInitData // 任意的打印机数据
  108. ) ;
  109. private void button1_Click(object sender, System.EventArgs e)
  110. {
  111. this.Hide();
  112. IntPtr dc1 = CreateDC ( "DISPLAY" , null , null , ( IntPtr ) null ) ;
  113. //创建显示器的DC
  114. Graphics g1 = Graphics.FromHdc ( dc1 ) ;
  115. //由一个指定设备的句柄创建一个新的Graphics对象
  116. Bitmap MyImage = new Bitmap ( Screen.PrimaryScreen.Bounds.Width , Screen.PrimaryScreen.Bounds.Height , g1 ) ;
  117. //根据屏幕大小创建一个与之相同大小的Bitmap对象
  118. Graphics g2 = Graphics.FromImage ( MyImage ) ;
  119. //获得屏幕的句柄
  120. IntPtr dc3 = g1.GetHdc ( ) ;
  121. //获得位图的句柄
  122. IntPtr dc2 = g2.GetHdc ( ) ;
  123. //把当前屏幕捕获到位图对象中
  124. BitBlt ( dc2 , 0 , 0 , Screen.PrimaryScreen.Bounds.Width , Screen.PrimaryScreen.Bounds.Height , dc3 , 0 , 0 , 13369376 ) ;
  125. //把当前屏幕拷贝到位图中
  126. g1.ReleaseHdc ( dc3 ) ;
  127. //释放屏幕句柄
  128. g2.ReleaseHdc ( dc2 ) ;
  129. //释放位图句柄
  130. if (saveFileDialog1.ShowDialog () == DialogResult.OK )
  131. {
  132. MyImage.Save ( saveFileDialog1.FileName, ImageFormat.Bmp ) ;
  133. MessageBox.Show ( "已经把当前屏幕保存!" ) ;
  134. this.Show();
  135. }
  136. }
  137. }
  138. }