123456789101112131415161718192021222324252627 |
- 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;
- }
- }
- }
|