using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Remontor.Connector { internal class DobleMonTwo : IModeMon { [DllImport("user32.dll")] static extern bool MoveWindow(IntPtr Handle, int x, int y, int w, int h, bool repaint); public DobleMonTwo() { } public override void Resize(Process Proc, Control View) { MoveWindow(Proc.MainWindowHandle, View.Bounds.X - View.Bounds.Width, View.Bounds.Y - 4, View.Bounds.Width * 2, View.Bounds.Height, true); } public override IModeMon Change(IModeMon Mode) { if (Mode == this) return this; return Mode; } } }