FrmCapture.cs 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  1. using LYFZ.ComponentLibrary.Properties;
  2. using LYFZ.OtherExpansion.Win32;
  3. using LYFZ.OtherExpansion.Win32.Struct;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.ComponentModel;
  7. using System.Drawing;
  8. using System.Drawing.Drawing2D;
  9. using System.Drawing.Imaging;
  10. using System.Runtime.InteropServices;
  11. using System.Windows.Forms;
  12. namespace LYFZ.OtherExpansion.SkinControl
  13. {
  14. public class FrmCapture : Form
  15. {
  16. private RtfRichTextBox RcTxt;
  17. private bool isCaptureCursor;
  18. private MouseHook m_MHook;
  19. private List<Bitmap> m_layer;
  20. private bool m_isStartDraw;
  21. private Point m_ptOriginal;
  22. private Point m_ptCurrent;
  23. private Bitmap m_bmpLayerCurrent;
  24. private Bitmap m_bmpLayerShow;
  25. private IContainer components;
  26. private Panel panel1;
  27. private ToolButton tBtn_Ellipse;
  28. private ToolButton tBtn_Rect;
  29. private ToolButton tBtn_Arrow;
  30. private ToolButton tBtn_Brush;
  31. private ToolButton tBtn_Text;
  32. private ToolButton tBtn_Finish;
  33. private ToolButton tBtn_Close;
  34. private ToolButton tBtn_Save;
  35. private ToolButton tBtn_Cancel;
  36. private PictureBox pictureBox1;
  37. private PictureBox pictureBox2;
  38. private ImageProcessBox imgpb;
  39. private Panel panel2;
  40. private ColorBox colorBox1;
  41. private ToolButton toolButton1;
  42. private ToolButton toolButton3;
  43. private ToolButton toolButton2;
  44. private TextBox textBox1;
  45. private Timer timer1;
  46. public bool IsCaptureCursor
  47. {
  48. get
  49. {
  50. return this.isCaptureCursor;
  51. }
  52. set
  53. {
  54. this.isCaptureCursor = value;
  55. }
  56. }
  57. public bool ImgProcessBoxIsShowInfo
  58. {
  59. get
  60. {
  61. return this.imgpb.IsShowInfo;
  62. }
  63. set
  64. {
  65. this.imgpb.IsShowInfo = value;
  66. }
  67. }
  68. public Color ImgProcessBoxDotColor
  69. {
  70. get
  71. {
  72. return this.imgpb.DotColor;
  73. }
  74. set
  75. {
  76. this.imgpb.DotColor = value;
  77. }
  78. }
  79. public Color ImgProcessBoxLineColor
  80. {
  81. get
  82. {
  83. return this.imgpb.LineColor;
  84. }
  85. set
  86. {
  87. this.imgpb.LineColor = value;
  88. }
  89. }
  90. public Size ImgProcessBoxMagnifySize
  91. {
  92. get
  93. {
  94. return this.imgpb.MagnifySize;
  95. }
  96. set
  97. {
  98. this.imgpb.MagnifySize = value;
  99. }
  100. }
  101. public int ImgProcessBoxMagnifyTimes
  102. {
  103. get
  104. {
  105. return this.imgpb.MagnifyTimes;
  106. }
  107. set
  108. {
  109. this.imgpb.MagnifyTimes = value;
  110. }
  111. }
  112. public FrmCapture()
  113. {
  114. this.InitializeComponent();
  115. base.FormBorderStyle = FormBorderStyle.None;
  116. base.Location = new Point(0, 0);
  117. base.Size = new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
  118. base.TopMost = true;
  119. base.ShowInTaskbar = false;
  120. this.m_MHook = new MouseHook();
  121. base.FormClosing += delegate(object s, FormClosingEventArgs e)
  122. {
  123. this.m_MHook.UnLoadHook();
  124. this.DelResource();
  125. };
  126. this.imgpb.MouseLeave += delegate(object s, EventArgs e)
  127. {
  128. this.Cursor = Cursors.Default;
  129. };
  130. this.m_layer = new List<Bitmap>();
  131. }
  132. public FrmCapture(RtfRichTextBox rcTxt)
  133. {
  134. this.InitializeComponent();
  135. this.RcTxt = rcTxt;
  136. base.FormBorderStyle = FormBorderStyle.None;
  137. base.Location = new Point(0, 0);
  138. base.Size = new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
  139. base.TopMost = true;
  140. base.ShowInTaskbar = false;
  141. this.m_MHook = new MouseHook();
  142. base.FormClosing += delegate(object s, FormClosingEventArgs e)
  143. {
  144. this.m_MHook.UnLoadHook();
  145. this.DelResource();
  146. };
  147. this.imgpb.MouseLeave += delegate(object s, EventArgs e)
  148. {
  149. this.Cursor = Cursors.Default;
  150. };
  151. this.m_layer = new List<Bitmap>();
  152. }
  153. private void DelResource()
  154. {
  155. if (this.m_bmpLayerCurrent != null)
  156. {
  157. this.m_bmpLayerCurrent.Dispose();
  158. }
  159. if (this.m_bmpLayerShow != null)
  160. {
  161. this.m_bmpLayerShow.Dispose();
  162. }
  163. this.m_layer.Clear();
  164. this.imgpb.DeleResource();
  165. GC.Collect();
  166. }
  167. private void InitMember()
  168. {
  169. this.panel1.Visible = false;
  170. this.panel2.Visible = false;
  171. this.panel1.BackColor = Color.White;
  172. this.panel2.BackColor = Color.White;
  173. this.panel1.Height = this.tBtn_Finish.Bottom + 3;
  174. this.panel1.Width = this.tBtn_Finish.Right + 3;
  175. this.panel2.Height = this.colorBox1.Height;
  176. this.panel1.Paint += delegate(object s, PaintEventArgs e)
  177. {
  178. e.Graphics.DrawRectangle(Pens.SteelBlue, 0, 0, this.panel1.Width - 1, this.panel1.Height - 1);
  179. };
  180. this.panel2.Paint += delegate(object s, PaintEventArgs e)
  181. {
  182. e.Graphics.DrawRectangle(Pens.SteelBlue, 0, 0, this.panel2.Width - 1, this.panel2.Height - 1);
  183. };
  184. this.tBtn_Rect.Click += new EventHandler(this.selectToolButton_Click);
  185. this.tBtn_Ellipse.Click += new EventHandler(this.selectToolButton_Click);
  186. this.tBtn_Arrow.Click += new EventHandler(this.selectToolButton_Click);
  187. this.tBtn_Brush.Click += new EventHandler(this.selectToolButton_Click);
  188. this.tBtn_Text.Click += new EventHandler(this.selectToolButton_Click);
  189. this.tBtn_Close.Click += delegate(object s, EventArgs e)
  190. {
  191. base.Close();
  192. };
  193. this.textBox1.BorderStyle = BorderStyle.None;
  194. this.textBox1.Visible = false;
  195. this.textBox1.ForeColor = Color.Red;
  196. this.colorBox1.ColorChanged += delegate(object s, ColorChangedEventArgs e)
  197. {
  198. this.textBox1.ForeColor = e.Color;
  199. };
  200. }
  201. // 定义委托
  202. delegate bool MyDelegate();
  203. private void FrmCapture_Load(object sender, EventArgs e)
  204. {
  205. this.InitMember();
  206. this.imgpb.BaseImage = this.GetScreen();
  207. this.m_MHook.SetHook();
  208. this.m_MHook.MHookEvent += new MouseHook.MHookEventHandler(this.m_MHook_MHookEvent);
  209. this.imgpb.IsDrawOperationDot = false;
  210. base.BeginInvoke(new MyDelegate(delegate() { base.Enabled = false; return true; }));
  211. this.timer1.Interval = 500;
  212. this.timer1.Enabled = true;
  213. }
  214. private void m_MHook_MHookEvent(object sender, MHookEventArgs e)
  215. {
  216. if (!base.Enabled)
  217. {
  218. this.imgpb.SetInfoPoint(Control.MousePosition.X, Control.MousePosition.Y);
  219. }
  220. if (e.MButton == ButtonStatus.LeftDown || e.MButton == ButtonStatus.RightDown)
  221. {
  222. base.Enabled = true;
  223. this.imgpb.IsDrawOperationDot = true;
  224. }
  225. if (e.MButton == ButtonStatus.RightUp)
  226. {
  227. if (!this.imgpb.IsDrawed)
  228. {
  229. base.BeginInvoke(new MyDelegate(delegate()
  230. {
  231. base.Close() ;
  232. return true;
  233. }));
  234. }
  235. base.Enabled = false;
  236. this.imgpb.ClearDraw();
  237. this.imgpb.CanReset = true;
  238. this.imgpb.IsDrawOperationDot = false;
  239. this.m_layer.Clear();
  240. this.m_bmpLayerCurrent = null;
  241. this.m_bmpLayerShow = null;
  242. this.ClearToolBarBtnSelected();
  243. this.panel1.Visible = false;
  244. this.panel2.Visible = false;
  245. }
  246. if (!base.Enabled)
  247. {
  248. this.FoundAndDrawWindowRect();
  249. }
  250. }
  251. private void selectToolButton_Click(object sender, EventArgs e)
  252. {
  253. this.panel2.Visible = ((ToolButton)sender).IsSelected;
  254. if (this.panel2.Visible)
  255. {
  256. this.imgpb.CanReset = false;
  257. }
  258. else
  259. {
  260. this.imgpb.CanReset = (this.m_layer.Count == 0);
  261. }
  262. this.SetToolBarLocation();
  263. }
  264. private void imageProcessBox1_MouseDown(object sender, MouseEventArgs e)
  265. {
  266. if (this.imgpb.Cursor != Cursors.SizeAll && this.imgpb.Cursor != Cursors.Default)
  267. {
  268. this.panel1.Visible = false;
  269. }
  270. if (e.Button == MouseButtons.Left && this.imgpb.IsDrawed && this.HaveSelectedToolButton() && this.imgpb.SelectedRectangle.Contains(e.Location))
  271. {
  272. if (this.tBtn_Text.IsSelected)
  273. {
  274. this.textBox1.Location = e.Location;
  275. this.textBox1.Visible = true;
  276. this.textBox1.Focus();
  277. return;
  278. }
  279. this.m_isStartDraw = true;
  280. Cursor.Clip = this.imgpb.SelectedRectangle;
  281. }
  282. this.m_ptOriginal = e.Location;
  283. }
  284. private void imageProcessBox1_MouseMove(object sender, MouseEventArgs e)
  285. {
  286. this.m_ptCurrent = e.Location;
  287. if (this.imgpb.SelectedRectangle.Contains(e.Location) && this.HaveSelectedToolButton() && this.imgpb.IsDrawed)
  288. {
  289. this.Cursor = Cursors.Cross;
  290. }
  291. else
  292. {
  293. if (!this.imgpb.SelectedRectangle.Contains(e.Location))
  294. {
  295. this.Cursor = Cursors.Default;
  296. }
  297. }
  298. if (this.imgpb.IsStartDraw && this.panel1.Visible)
  299. {
  300. this.SetToolBarLocation();
  301. }
  302. if (this.m_isStartDraw && this.m_bmpLayerShow != null)
  303. {
  304. using (Graphics g = Graphics.FromImage(this.m_bmpLayerShow))
  305. {
  306. int tempWidth = 1;
  307. if (this.toolButton2.IsSelected)
  308. {
  309. tempWidth = 3;
  310. }
  311. if (this.toolButton3.IsSelected)
  312. {
  313. tempWidth = 5;
  314. }
  315. Pen p = new Pen(this.colorBox1.SelectedColor, (float)tempWidth);
  316. g.SmoothingMode = SmoothingMode.HighQuality;
  317. if (this.tBtn_Rect.IsSelected)
  318. {
  319. int tempX = (e.X - this.m_ptOriginal.X > 0) ? this.m_ptOriginal.X : e.X;
  320. int tempY = (e.Y - this.m_ptOriginal.Y > 0) ? this.m_ptOriginal.Y : e.Y;
  321. g.Clear(Color.Transparent);
  322. g.DrawRectangle(p, tempX - this.imgpb.SelectedRectangle.Left, tempY - this.imgpb.SelectedRectangle.Top, Math.Abs(e.X - this.m_ptOriginal.X), Math.Abs(e.Y - this.m_ptOriginal.Y));
  323. this.imgpb.Invalidate();
  324. }
  325. if (this.tBtn_Ellipse.IsSelected)
  326. {
  327. g.DrawLine(Pens.Red, 0, 0, 200, 200);
  328. g.Clear(Color.Transparent);
  329. g.DrawEllipse(p, this.m_ptOriginal.X - this.imgpb.SelectedRectangle.Left, this.m_ptOriginal.Y - this.imgpb.SelectedRectangle.Top, e.X - this.m_ptOriginal.X, e.Y - this.m_ptOriginal.Y);
  330. this.imgpb.Invalidate();
  331. }
  332. if (this.tBtn_Arrow.IsSelected)
  333. {
  334. g.Clear(Color.Transparent);
  335. AdjustableArrowCap lineArrow = new AdjustableArrowCap(4f, 4f, true);
  336. p.CustomEndCap = lineArrow;
  337. g.DrawLine(p, (Point)((Size)this.m_ptOriginal - (Size)this.imgpb.SelectedRectangle.Location), (Point)((Size)this.m_ptCurrent - (Size)this.imgpb.SelectedRectangle.Location));
  338. this.imgpb.Invalidate();
  339. }
  340. if (this.tBtn_Brush.IsSelected)
  341. {
  342. Point ptTemp = (Point)((Size)this.m_ptOriginal - (Size)this.imgpb.SelectedRectangle.Location);
  343. p.LineJoin = LineJoin.Round;
  344. g.DrawLine(p, ptTemp, (Point)((Size)e.Location - (Size)this.imgpb.SelectedRectangle.Location));
  345. this.m_ptOriginal = e.Location;
  346. this.imgpb.Invalidate();
  347. }
  348. p.Dispose();
  349. }
  350. }
  351. }
  352. private void imageProcessBox1_MouseUp(object sender, MouseEventArgs e)
  353. {
  354. if (!this.imgpb.IsDrawed)
  355. {
  356. base.Enabled = false;
  357. this.imgpb.IsDrawOperationDot = false;
  358. }
  359. else
  360. {
  361. if (!this.panel1.Visible)
  362. {
  363. this.SetToolBarLocation();
  364. this.panel1.Visible = true;
  365. this.m_bmpLayerCurrent = this.imgpb.GetResultBmp();
  366. this.m_bmpLayerShow = new Bitmap(this.m_bmpLayerCurrent.Width, this.m_bmpLayerCurrent.Height);
  367. }
  368. }
  369. if (this.imgpb.Cursor == Cursors.SizeAll && this.m_ptOriginal != e.Location)
  370. {
  371. this.m_bmpLayerCurrent = this.imgpb.GetResultBmp();
  372. }
  373. if (!this.m_isStartDraw)
  374. {
  375. return;
  376. }
  377. Cursor.Clip = Rectangle.Empty;
  378. this.m_isStartDraw = false;
  379. if (e.Location == this.m_ptOriginal && !this.tBtn_Brush.IsSelected)
  380. {
  381. return;
  382. }
  383. this.SetLayer();
  384. }
  385. private void imageProcessBox1_Paint(object sender, PaintEventArgs e)
  386. {
  387. Graphics g = e.Graphics;
  388. if (this.m_layer.Count > 0)
  389. {
  390. g.DrawImage(this.m_layer[this.m_layer.Count - 1], this.imgpb.SelectedRectangle.Location);
  391. }
  392. if (this.m_bmpLayerShow != null)
  393. {
  394. g.DrawImage(this.m_bmpLayerShow, this.imgpb.SelectedRectangle.Location);
  395. }
  396. }
  397. private void textBox1_TextChanged(object sender, EventArgs e)
  398. {
  399. Size se = TextRenderer.MeasureText(this.textBox1.Text, this.textBox1.Font);
  400. this.textBox1.Size = (se.IsEmpty ? new Size(50, this.textBox1.Font.Height) : se);
  401. }
  402. private void textBox1_Validating(object sender, CancelEventArgs e)
  403. {
  404. this.textBox1.Visible = false;
  405. if (string.IsNullOrEmpty(this.textBox1.Text.Trim()))
  406. {
  407. this.textBox1.Text = "";
  408. return;
  409. }
  410. using (Graphics g = Graphics.FromImage(this.m_bmpLayerCurrent))
  411. {
  412. SolidBrush sb = new SolidBrush(this.colorBox1.SelectedColor);
  413. g.DrawString(this.textBox1.Text, this.textBox1.Font, sb, (float)(this.textBox1.Left - this.imgpb.SelectedRectangle.Left), (float)(this.textBox1.Top - this.imgpb.SelectedRectangle.Top));
  414. sb.Dispose();
  415. this.textBox1.Text = "";
  416. this.SetLayer();
  417. this.imgpb.Invalidate();
  418. }
  419. }
  420. private void textBox1_Resize(object sender, EventArgs e)
  421. {
  422. int se = 10;
  423. if (this.toolButton2.IsSelected)
  424. {
  425. se = 12;
  426. }
  427. if (this.toolButton3.IsSelected)
  428. {
  429. se = 14;
  430. }
  431. if (this.textBox1.Font.Height == se)
  432. {
  433. return;
  434. }
  435. this.textBox1.Font = new Font(this.Font.FontFamily, (float)se);
  436. }
  437. private void tBtn_Cancel_Click(object sender, EventArgs e)
  438. {
  439. using (Graphics g = Graphics.FromImage(this.m_bmpLayerShow))
  440. {
  441. g.Clear(Color.Transparent);
  442. }
  443. if (this.m_layer.Count > 0)
  444. {
  445. this.m_layer.RemoveAt(this.m_layer.Count - 1);
  446. if (this.m_layer.Count > 0)
  447. {
  448. this.m_bmpLayerCurrent = this.m_layer[this.m_layer.Count - 1].Clone(new Rectangle(0, 0, this.m_bmpLayerCurrent.Width, this.m_bmpLayerCurrent.Height), this.m_bmpLayerCurrent.PixelFormat);
  449. }
  450. else
  451. {
  452. this.m_bmpLayerCurrent = this.imgpb.GetResultBmp();
  453. }
  454. this.imgpb.Invalidate();
  455. this.imgpb.CanReset = (this.m_layer.Count == 0 && !this.HaveSelectedToolButton());
  456. return;
  457. }
  458. base.Enabled = false;
  459. this.imgpb.ClearDraw();
  460. this.imgpb.IsDrawOperationDot = false;
  461. this.panel1.Visible = false;
  462. this.panel2.Visible = false;
  463. }
  464. private void tBtn_Save_Click(object sender, EventArgs e)
  465. {
  466. SaveFileDialog saveDlg = new SaveFileDialog();
  467. saveDlg.Filter = "位图(*.bmp)|*.bmp|JPEG(*.jpg)|*.jpg";
  468. saveDlg.FilterIndex = 1;
  469. saveDlg.FileName = "CAPTURE_" + this.GetTimeString();
  470. if (saveDlg.ShowDialog() == DialogResult.OK)
  471. {
  472. switch (saveDlg.FilterIndex)
  473. {
  474. case 1:
  475. this.m_bmpLayerCurrent.Clone(new Rectangle(0, 0, this.m_bmpLayerCurrent.Width, this.m_bmpLayerCurrent.Height), PixelFormat.Format24bppRgb).Save(saveDlg.FileName, ImageFormat.Bmp);
  476. base.Close();
  477. return;
  478. case 2:
  479. this.m_bmpLayerCurrent.Save(saveDlg.FileName, ImageFormat.Jpeg);
  480. base.Close();
  481. break;
  482. default:
  483. return;
  484. }
  485. }
  486. }
  487. private string imgSaveFileName = null;
  488. /// <summary>
  489. /// 截图图片在点击完成时保存的完全文件名,请注意图片名要以.jpg为后缀名
  490. /// </summary>
  491. public string ImgSaveFileName
  492. {
  493. get { return imgSaveFileName; }
  494. set { imgSaveFileName = value; }
  495. }
  496. /// <summary>
  497. /// 点击完成时事件
  498. /// </summary>
  499. /// <param name="sender"></param>
  500. /// <param name="e"></param>
  501. private void tBtn_Finish_Click(object sender, EventArgs e)
  502. {
  503. Clipboard.SetImage(this.m_bmpLayerCurrent);
  504. if (this.RcTxt != null)
  505. {
  506. this.RcTxt.Paste();
  507. }
  508. if (ImgSaveFileName != null)
  509. {
  510. this.m_bmpLayerCurrent.Save(ImgSaveFileName, ImageFormat.Jpeg);
  511. }
  512. base.Close();
  513. }
  514. private void imageProcessBox1_DoubleClick(object sender, EventArgs e)
  515. {
  516. Clipboard.SetImage(this.m_bmpLayerCurrent);
  517. if (this.RcTxt != null)
  518. {
  519. this.RcTxt.Paste();
  520. }
  521. if (ImgSaveFileName != null)
  522. {
  523. this.m_bmpLayerCurrent.Save(ImgSaveFileName, ImageFormat.Jpeg);
  524. }
  525. base.Close();
  526. }
  527. private void timer1_Tick(object sender, EventArgs e)
  528. {
  529. if (!base.Enabled)
  530. {
  531. this.imgpb.SetInfoPoint(Control.MousePosition.X, Control.MousePosition.Y);
  532. }
  533. }
  534. private void FoundAndDrawWindowRect()
  535. {
  536. NativeMethods.Point pt = default(NativeMethods.Point);
  537. pt.x = Control.MousePosition.X;
  538. pt.y = Control.MousePosition.Y;
  539. IntPtr hWnd = NativeMethods.ChildWindowFromPointEx(NativeMethods.GetDesktopWindow(), pt, 3u);
  540. if (hWnd != IntPtr.Zero)
  541. {
  542. IntPtr hTemp = hWnd;
  543. while (true)
  544. {
  545. NativeMethods.ScreenToClient(hTemp, ref pt);
  546. hTemp = NativeMethods.ChildWindowFromPointEx(hTemp, pt, 0u);
  547. if (hTemp == IntPtr.Zero || hTemp == hWnd)
  548. {
  549. break;
  550. }
  551. hWnd = hTemp;
  552. pt.x = Control.MousePosition.X;
  553. pt.y = Control.MousePosition.Y;
  554. }
  555. RECT rect = default(RECT);
  556. NativeMethods.GetWindowRect(hWnd, ref rect);
  557. this.imgpb.SetSelectRect(new Rectangle(rect.Left, rect.Top, rect.Right - rect.Left, rect.Bottom - rect.Top));
  558. }
  559. }
  560. private Bitmap GetScreen()
  561. {
  562. Bitmap bmp = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
  563. if (this.isCaptureCursor)
  564. {
  565. using (Graphics g = Graphics.FromHwnd(IntPtr.Zero))
  566. {
  567. NativeMethods.PCURSORINFO pci;
  568. pci.cbSize = Marshal.SizeOf(typeof(NativeMethods.PCURSORINFO));
  569. NativeMethods.GetCursorInfo(out pci);
  570. if (pci.hCursor != IntPtr.Zero)
  571. {
  572. Cursor cur = new Cursor(pci.hCursor);
  573. g.CopyFromScreen(0, 0, 0, 0, bmp.Size);
  574. cur.Draw(g, new Rectangle((Point)((Size)Control.MousePosition - (Size)cur.HotSpot), cur.Size));
  575. }
  576. }
  577. }
  578. using (Graphics g2 = Graphics.FromImage(bmp))
  579. {
  580. g2.CopyFromScreen(0, 0, 0, 0, bmp.Size);
  581. }
  582. return bmp;
  583. }
  584. private void SetToolBarLocation()
  585. {
  586. int tempX = this.imgpb.SelectedRectangle.Left;
  587. int tempY = this.imgpb.SelectedRectangle.Bottom + 5;
  588. int tempHeight = this.panel2.Visible ? (this.panel2.Height + 2) : 0;
  589. if (tempY + this.panel1.Height + tempHeight >= base.Height)
  590. {
  591. tempY = this.imgpb.SelectedRectangle.Top - this.panel1.Height - 10 - this.imgpb.Font.Height;
  592. }
  593. if (tempY - tempHeight <= 0)
  594. {
  595. if (this.imgpb.SelectedRectangle.Top - 5 - this.imgpb.Font.Height >= 0)
  596. {
  597. tempY = this.imgpb.SelectedRectangle.Top + 5;
  598. }
  599. else
  600. {
  601. tempY = this.imgpb.SelectedRectangle.Top + 10 + this.imgpb.Font.Height;
  602. }
  603. }
  604. if (tempX + this.panel1.Width >= base.Width)
  605. {
  606. tempX = base.Width - this.panel1.Width - 5;
  607. }
  608. this.panel1.Left = tempX;
  609. this.panel2.Left = tempX;
  610. this.panel1.Top = tempY;
  611. this.panel2.Top = ((this.imgpb.SelectedRectangle.Top > tempY) ? (tempY - tempHeight) : (this.panel1.Bottom + 2));
  612. }
  613. private bool HaveSelectedToolButton()
  614. {
  615. return this.tBtn_Rect.IsSelected || this.tBtn_Ellipse.IsSelected || this.tBtn_Arrow.IsSelected || this.tBtn_Brush.IsSelected || this.tBtn_Text.IsSelected;
  616. }
  617. private void ClearToolBarBtnSelected()
  618. {
  619. this.tBtn_Rect.IsSelected = (this.tBtn_Ellipse.IsSelected = (this.tBtn_Arrow.IsSelected = (this.tBtn_Brush.IsSelected = (this.tBtn_Text.IsSelected = false))));
  620. }
  621. private void SetLayer()
  622. {
  623. if (base.IsDisposed)
  624. {
  625. return;
  626. }
  627. using (Graphics g = Graphics.FromImage(this.m_bmpLayerCurrent))
  628. {
  629. g.DrawImage(this.m_bmpLayerShow, 0, 0);
  630. }
  631. Bitmap bmpTemp = this.m_bmpLayerCurrent.Clone(new Rectangle(0, 0, this.m_bmpLayerCurrent.Width, this.m_bmpLayerCurrent.Height), this.m_bmpLayerCurrent.PixelFormat);
  632. this.m_layer.Add(bmpTemp);
  633. }
  634. private string GetTimeString()
  635. {
  636. DateTime time = DateTime.Now;
  637. return time.Date.ToShortDateString().Replace("/", "") + "_" + time.ToLongTimeString().Replace(":", "");
  638. }
  639. protected override void Dispose(bool disposing)
  640. {
  641. if (disposing && this.components != null)
  642. {
  643. this.components.Dispose();
  644. }
  645. base.Dispose(disposing);
  646. }
  647. private void InitializeComponent()
  648. {
  649. this.components = new System.ComponentModel.Container();
  650. this.panel1 = new System.Windows.Forms.Panel();
  651. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  652. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  653. this.tBtn_Finish = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  654. this.tBtn_Close = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  655. this.tBtn_Save = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  656. this.tBtn_Cancel = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  657. this.tBtn_Text = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  658. this.tBtn_Brush = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  659. this.tBtn_Arrow = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  660. this.tBtn_Ellipse = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  661. this.tBtn_Rect = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  662. this.panel2 = new System.Windows.Forms.Panel();
  663. this.toolButton1 = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  664. this.toolButton3 = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  665. this.toolButton2 = new LYFZ.OtherExpansion.SkinControl.ToolButton();
  666. this.colorBox1 = new LYFZ.OtherExpansion.SkinControl.ColorBox();
  667. this.textBox1 = new System.Windows.Forms.TextBox();
  668. this.timer1 = new System.Windows.Forms.Timer(this.components);
  669. this.imgpb = new LYFZ.OtherExpansion.SkinControl.ImageProcessBox();
  670. this.panel1.SuspendLayout();
  671. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  672. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  673. this.panel2.SuspendLayout();
  674. this.SuspendLayout();
  675. //
  676. // panel1
  677. //
  678. this.panel1.Controls.Add(this.pictureBox2);
  679. this.panel1.Controls.Add(this.pictureBox1);
  680. this.panel1.Controls.Add(this.tBtn_Finish);
  681. this.panel1.Controls.Add(this.tBtn_Close);
  682. this.panel1.Controls.Add(this.tBtn_Save);
  683. this.panel1.Controls.Add(this.tBtn_Cancel);
  684. this.panel1.Controls.Add(this.tBtn_Text);
  685. this.panel1.Controls.Add(this.tBtn_Brush);
  686. this.panel1.Controls.Add(this.tBtn_Arrow);
  687. this.panel1.Controls.Add(this.tBtn_Ellipse);
  688. this.panel1.Controls.Add(this.tBtn_Rect);
  689. this.panel1.Location = new System.Drawing.Point(12, 83);
  690. this.panel1.Name = "panel1";
  691. this.panel1.Size = new System.Drawing.Size(294, 25);
  692. this.panel1.TabIndex = 1;
  693. //
  694. // pictureBox2
  695. //
  696. this.pictureBox2.Image = global::LYFZ.ComponentLibrary.Properties.Resources.separator;
  697. this.pictureBox2.Location = new System.Drawing.Point(199, 5);
  698. this.pictureBox2.Name = "pictureBox2";
  699. this.pictureBox2.Size = new System.Drawing.Size(1, 17);
  700. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  701. this.pictureBox2.TabIndex = 10;
  702. this.pictureBox2.TabStop = false;
  703. //
  704. // pictureBox1
  705. //
  706. this.pictureBox1.Image = global::LYFZ.ComponentLibrary.Properties.Resources.separator;
  707. this.pictureBox1.Location = new System.Drawing.Point(138, 5);
  708. this.pictureBox1.Name = "pictureBox1";
  709. this.pictureBox1.Size = new System.Drawing.Size(1, 17);
  710. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  711. this.pictureBox1.TabIndex = 9;
  712. this.pictureBox1.TabStop = false;
  713. //
  714. // tBtn_Finish
  715. //
  716. this.tBtn_Finish.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.ok;
  717. this.tBtn_Finish.IsSelected = false;
  718. this.tBtn_Finish.IsSelectedBtn = false;
  719. this.tBtn_Finish.IsSingleSelectedBtn = false;
  720. this.tBtn_Finish.Location = new System.Drawing.Point(233, 3);
  721. this.tBtn_Finish.Name = "tBtn_Finish";
  722. this.tBtn_Finish.Size = new System.Drawing.Size(56, 21);
  723. this.tBtn_Finish.TabIndex = 8;
  724. this.tBtn_Finish.Text = "完成 ";
  725. this.tBtn_Finish.Click += new System.EventHandler(this.tBtn_Finish_Click);
  726. //
  727. // tBtn_Close
  728. //
  729. this.tBtn_Close.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.close;
  730. this.tBtn_Close.IsSelected = false;
  731. this.tBtn_Close.IsSelectedBtn = false;
  732. this.tBtn_Close.IsSingleSelectedBtn = false;
  733. this.tBtn_Close.Location = new System.Drawing.Point(206, 3);
  734. this.tBtn_Close.Name = "tBtn_Close";
  735. this.tBtn_Close.Size = new System.Drawing.Size(21, 21);
  736. this.tBtn_Close.TabIndex = 7;
  737. //
  738. // tBtn_Save
  739. //
  740. this.tBtn_Save.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.save;
  741. this.tBtn_Save.IsSelected = false;
  742. this.tBtn_Save.IsSelectedBtn = false;
  743. this.tBtn_Save.IsSingleSelectedBtn = false;
  744. this.tBtn_Save.Location = new System.Drawing.Point(172, 3);
  745. this.tBtn_Save.Name = "tBtn_Save";
  746. this.tBtn_Save.Size = new System.Drawing.Size(21, 21);
  747. this.tBtn_Save.TabIndex = 6;
  748. this.tBtn_Save.Click += new System.EventHandler(this.tBtn_Save_Click);
  749. //
  750. // tBtn_Cancel
  751. //
  752. this.tBtn_Cancel.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.cancel;
  753. this.tBtn_Cancel.IsSelected = false;
  754. this.tBtn_Cancel.IsSelectedBtn = false;
  755. this.tBtn_Cancel.IsSingleSelectedBtn = false;
  756. this.tBtn_Cancel.Location = new System.Drawing.Point(145, 3);
  757. this.tBtn_Cancel.Name = "tBtn_Cancel";
  758. this.tBtn_Cancel.Size = new System.Drawing.Size(21, 21);
  759. this.tBtn_Cancel.TabIndex = 5;
  760. this.tBtn_Cancel.Click += new System.EventHandler(this.tBtn_Cancel_Click);
  761. //
  762. // tBtn_Text
  763. //
  764. this.tBtn_Text.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.text;
  765. this.tBtn_Text.IsSelected = false;
  766. this.tBtn_Text.IsSelectedBtn = true;
  767. this.tBtn_Text.IsSingleSelectedBtn = false;
  768. this.tBtn_Text.Location = new System.Drawing.Point(111, 3);
  769. this.tBtn_Text.Name = "tBtn_Text";
  770. this.tBtn_Text.Size = new System.Drawing.Size(21, 21);
  771. this.tBtn_Text.TabIndex = 4;
  772. //
  773. // tBtn_Brush
  774. //
  775. this.tBtn_Brush.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.brush;
  776. this.tBtn_Brush.IsSelected = false;
  777. this.tBtn_Brush.IsSelectedBtn = true;
  778. this.tBtn_Brush.IsSingleSelectedBtn = false;
  779. this.tBtn_Brush.Location = new System.Drawing.Point(84, 3);
  780. this.tBtn_Brush.Name = "tBtn_Brush";
  781. this.tBtn_Brush.Size = new System.Drawing.Size(21, 21);
  782. this.tBtn_Brush.TabIndex = 3;
  783. //
  784. // tBtn_Arrow
  785. //
  786. this.tBtn_Arrow.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.arrow;
  787. this.tBtn_Arrow.IsSelected = false;
  788. this.tBtn_Arrow.IsSelectedBtn = true;
  789. this.tBtn_Arrow.IsSingleSelectedBtn = false;
  790. this.tBtn_Arrow.Location = new System.Drawing.Point(57, 3);
  791. this.tBtn_Arrow.Name = "tBtn_Arrow";
  792. this.tBtn_Arrow.Size = new System.Drawing.Size(21, 21);
  793. this.tBtn_Arrow.TabIndex = 2;
  794. //
  795. // tBtn_Ellipse
  796. //
  797. this.tBtn_Ellipse.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.ellips;
  798. this.tBtn_Ellipse.IsSelected = false;
  799. this.tBtn_Ellipse.IsSelectedBtn = true;
  800. this.tBtn_Ellipse.IsSingleSelectedBtn = false;
  801. this.tBtn_Ellipse.Location = new System.Drawing.Point(30, 3);
  802. this.tBtn_Ellipse.Name = "tBtn_Ellipse";
  803. this.tBtn_Ellipse.Size = new System.Drawing.Size(21, 21);
  804. this.tBtn_Ellipse.TabIndex = 1;
  805. //
  806. // tBtn_Rect
  807. //
  808. this.tBtn_Rect.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.rect;
  809. this.tBtn_Rect.IsSelected = false;
  810. this.tBtn_Rect.IsSelectedBtn = true;
  811. this.tBtn_Rect.IsSingleSelectedBtn = false;
  812. this.tBtn_Rect.Location = new System.Drawing.Point(3, 3);
  813. this.tBtn_Rect.Name = "tBtn_Rect";
  814. this.tBtn_Rect.Size = new System.Drawing.Size(21, 21);
  815. this.tBtn_Rect.TabIndex = 0;
  816. //
  817. // panel2
  818. //
  819. this.panel2.Controls.Add(this.toolButton1);
  820. this.panel2.Controls.Add(this.toolButton3);
  821. this.panel2.Controls.Add(this.toolButton2);
  822. this.panel2.Controls.Add(this.colorBox1);
  823. this.panel2.Location = new System.Drawing.Point(12, 114);
  824. this.panel2.Name = "panel2";
  825. this.panel2.Size = new System.Drawing.Size(250, 32);
  826. this.panel2.TabIndex = 2;
  827. //
  828. // toolButton1
  829. //
  830. this.toolButton1.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.small;
  831. this.toolButton1.IsSelected = true;
  832. this.toolButton1.IsSelectedBtn = true;
  833. this.toolButton1.IsSingleSelectedBtn = true;
  834. this.toolButton1.Location = new System.Drawing.Point(3, 6);
  835. this.toolButton1.Name = "toolButton1";
  836. this.toolButton1.Size = new System.Drawing.Size(21, 21);
  837. this.toolButton1.TabIndex = 4;
  838. //
  839. // toolButton3
  840. //
  841. this.toolButton3.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.large;
  842. this.toolButton3.IsSelected = false;
  843. this.toolButton3.IsSelectedBtn = true;
  844. this.toolButton3.IsSingleSelectedBtn = true;
  845. this.toolButton3.Location = new System.Drawing.Point(57, 6);
  846. this.toolButton3.Name = "toolButton3";
  847. this.toolButton3.Size = new System.Drawing.Size(21, 21);
  848. this.toolButton3.TabIndex = 3;
  849. //
  850. // toolButton2
  851. //
  852. this.toolButton2.BtnImage = global::LYFZ.ComponentLibrary.Properties.Resources.middle;
  853. this.toolButton2.IsSelected = false;
  854. this.toolButton2.IsSelectedBtn = true;
  855. this.toolButton2.IsSingleSelectedBtn = true;
  856. this.toolButton2.Location = new System.Drawing.Point(30, 6);
  857. this.toolButton2.Name = "toolButton2";
  858. this.toolButton2.Size = new System.Drawing.Size(21, 21);
  859. this.toolButton2.TabIndex = 2;
  860. //
  861. // colorBox1
  862. //
  863. this.colorBox1.Location = new System.Drawing.Point(85, 0);
  864. this.colorBox1.Name = "colorBox1";
  865. this.colorBox1.Size = new System.Drawing.Size(165, 35);
  866. this.colorBox1.TabIndex = 0;
  867. this.colorBox1.Text = "colorBox1";
  868. //
  869. // textBox1
  870. //
  871. this.textBox1.Location = new System.Drawing.Point(12, 24);
  872. this.textBox1.Multiline = true;
  873. this.textBox1.Name = "textBox1";
  874. this.textBox1.Size = new System.Drawing.Size(100, 19);
  875. this.textBox1.TabIndex = 3;
  876. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  877. this.textBox1.Resize += new System.EventHandler(this.textBox1_Resize);
  878. this.textBox1.Validating += new System.ComponentModel.CancelEventHandler(this.textBox1_Validating);
  879. //
  880. // timer1
  881. //
  882. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  883. //
  884. // imgpb
  885. //
  886. this.imgpb.BackColor = System.Drawing.Color.Black;
  887. this.imgpb.BaseImage = null;
  888. this.imgpb.CanReset = true;
  889. this.imgpb.Cursor = System.Windows.Forms.Cursors.Default;
  890. this.imgpb.Dock = System.Windows.Forms.DockStyle.Fill;
  891. this.imgpb.ForeColor = System.Drawing.Color.White;
  892. this.imgpb.Location = new System.Drawing.Point(0, 0);
  893. this.imgpb.Name = "imgpb";
  894. this.imgpb.Size = new System.Drawing.Size(363, 247);
  895. this.imgpb.TabIndex = 0;
  896. this.imgpb.Text = "imageProcessBox1";
  897. this.imgpb.Paint += new System.Windows.Forms.PaintEventHandler(this.imageProcessBox1_Paint);
  898. this.imgpb.DoubleClick += new System.EventHandler(this.imageProcessBox1_DoubleClick);
  899. this.imgpb.KeyDown += new System.Windows.Forms.KeyEventHandler(this.imgpb_KeyDown);
  900. this.imgpb.MouseDown += new System.Windows.Forms.MouseEventHandler(this.imageProcessBox1_MouseDown);
  901. this.imgpb.MouseMove += new System.Windows.Forms.MouseEventHandler(this.imageProcessBox1_MouseMove);
  902. this.imgpb.MouseUp += new System.Windows.Forms.MouseEventHandler(this.imageProcessBox1_MouseUp);
  903. //
  904. // FrmCapture
  905. //
  906. this.ClientSize = new System.Drawing.Size(363, 247);
  907. this.Controls.Add(this.textBox1);
  908. this.Controls.Add(this.panel2);
  909. this.Controls.Add(this.panel1);
  910. this.Controls.Add(this.imgpb);
  911. this.Cursor = System.Windows.Forms.Cursors.Default;
  912. this.Name = "FrmCapture";
  913. this.Text = "FrmCapture";
  914. this.Load += new System.EventHandler(this.FrmCapture_Load);
  915. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmCapture_KeyDown);
  916. this.panel1.ResumeLayout(false);
  917. this.panel1.PerformLayout();
  918. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  919. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  920. this.panel2.ResumeLayout(false);
  921. this.ResumeLayout(false);
  922. this.PerformLayout();
  923. }
  924. private void FrmCapture_KeyDown(object sender, KeyEventArgs e)
  925. {
  926. if (e.KeyCode == Keys.Escape)
  927. {
  928. base.Close();
  929. }
  930. }
  931. private void imgpb_KeyDown(object sender, KeyEventArgs e)
  932. {
  933. if (e.KeyCode == Keys.Escape)
  934. {
  935. base.Close();
  936. }
  937. }
  938. }
  939. }