using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace RDClient { public partial class frmRemoteControl : Form { public frmRemoteControl() { InitializeComponent(); this.ResizeEnd += FrmRemoteControl_ResizeEnd; } private void FrmRemoteControl_ResizeEnd(object sender, EventArgs e) { this.Dock = DockStyle.None; } } }