- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CefBridgeDataExchange.Tests
- {
- internal interface IWindowControlService
- {
- WindowState GetWindowState();
- void SetWindowState(WindowState windowState);
- void DragMove();
- void Close();
- }
- }
|