IWindowControlService.cs 309 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CefBridgeDataExchange.Tests
  5. {
  6. internal interface IWindowControlService
  7. {
  8. WindowState GetWindowState();
  9. void SetWindowState(WindowState windowState);
  10. void DragMove();
  11. void Close();
  12. }
  13. }