WindowControlService.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.Windows.Forms;
  3. namespace CefBridgeDataExchange.Tests.Services
  4. {
  5. internal class WindowControlService : IWindowControlService
  6. {
  7. private readonly Form _form;
  8. public WindowControlService(Form form)
  9. {
  10. _form = form;
  11. }
  12. WindowState IWindowControlService.GetWindowState()
  13. {
  14. return (WindowState)_form.WindowState;
  15. }
  16. void IWindowControlService.SetWindowState(WindowState windowState)
  17. {
  18. if (_form.InvokeRequired) _form.Invoke(new Action(() => _form.WindowState = (FormWindowState)windowState));
  19. else _form.WindowState = (FormWindowState)windowState;
  20. }
  21. void IWindowControlService.Close()
  22. {
  23. if (_form.InvokeRequired) _form.Invoke(new Action(() => _form.Close()));
  24. else _form.Close();
  25. }
  26. void IWindowControlService.DragMove()
  27. {
  28. if (_form.InvokeRequired)
  29. {
  30. _form.Invoke(new Action(() =>
  31. {
  32. ReleaseCapture();
  33. SendMessage(_form.Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
  34. }));
  35. }
  36. else
  37. {
  38. ReleaseCapture();
  39. SendMessage(_form.Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
  40. }
  41. }
  42. public const int WM_NCLBUTTONDOWN = 0xA1;
  43. public const int HT_CAPTION = 0x2;
  44. [System.Runtime.InteropServices.DllImportAttribute("user32.dll")]
  45. public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
  46. [System.Runtime.InteropServices.DllImportAttribute("user32.dll")]
  47. public static extern bool ReleaseCapture();
  48. }
  49. }