Beispiel #1
0
 private void EveClientSwitcherForm_Load(object sender, EventArgs e)
 {
     activeProps  = propertyManager.ReadProps();
     standbyProps = propertyManager.CopyProps(activeProps);
     RegisterSwitchKey();
     RegisterMinimizeKey();
     this.Hide();
 }
Beispiel #2
0
 private void ResetButton_Click(object sender, EventArgs e)
 {
     standbyProps            = propertyManager.CopyProps(activeProps);
     switchKeyTextBox.Text   = hotkeyManager.GetKeyString(activeProps.switchModifier, activeProps.switchKey);
     minimizeKeyTextBox.Text = hotkeyManager.GetKeyString(activeProps.minimizeModifier, activeProps.minimizeKey);
 }