1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-16 00:03:28 +00:00

Added automatic clipboard sync.

This commit is contained in:
Ylian Saint-Hilaire
2021-06-14 16:42:30 -07:00
parent 3b720c081b
commit db41b2d525
9 changed files with 209 additions and 84 deletions

View File

@@ -120,11 +120,16 @@ namespace MeshCentralRouter
set { swapMouseButtonsCheckBox.Checked = value; }
}
public bool RemoteKeybaordMap
public bool RemoteKeyboardMap
{
get { return remoteKeyboardMapCheckBox.Checked; }
set { remoteKeyboardMapCheckBox.Checked = value; }
}
public bool AutoSendClipboard
{
get { return autoSendClipboardCheckBox.Checked; }
set { autoSendClipboardCheckBox.Checked = value; }
}
private void okButton_Click(object sender, EventArgs e)
{