Remapped some shortcut keys #49

This commit is contained in:
Alexander 2020-01-19 14:54:49 +02:00
parent b6736fb518
commit 656a2c9e92
No known key found for this signature in database
GPG key ID: 1F83313BFEB322E9

View file

@ -196,6 +196,7 @@ public void InitializeComponent()
// newMainMenu // newMainMenu
// //
this.newMainMenu.Name = "newMainMenu"; this.newMainMenu.Name = "newMainMenu";
this.newMainMenu.ShortcutKeyDisplayString = "";
this.newMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); this.newMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.newMainMenu.Size = new System.Drawing.Size(248, 22); this.newMainMenu.Size = new System.Drawing.Size(248, 22);
this.newMainMenu.Text = "New"; this.newMainMenu.Text = "New";
@ -386,10 +387,11 @@ public void InitializeComponent()
// //
// clearClipboardMainMenu // clearClipboardMainMenu
// //
this.clearClipboardMainMenu.Enabled = false;
this.clearClipboardMainMenu.Name = "clearClipboardMainMenu"; this.clearClipboardMainMenu.Name = "clearClipboardMainMenu";
this.clearClipboardMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) this.clearClipboardMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.C))); | System.Windows.Forms.Keys.C)));
this.clearClipboardMainMenu.Size = new System.Drawing.Size(221, 22); this.clearClipboardMainMenu.Size = new System.Drawing.Size(230, 22);
this.clearClipboardMainMenu.Text = "Clear Clipboard"; this.clearClipboardMainMenu.Text = "Clear Clipboard";
this.clearClipboardMainMenu.Click += new System.EventHandler(this.ClearClipboardMainMenu_Click); this.clearClipboardMainMenu.Click += new System.EventHandler(this.ClearClipboardMainMenu_Click);
// //
@ -460,9 +462,9 @@ public void InitializeComponent()
// changePasswordMainMenu // changePasswordMainMenu
// //
this.changePasswordMainMenu.Name = "changePasswordMainMenu"; this.changePasswordMainMenu.Name = "changePasswordMainMenu";
this.changePasswordMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) this.changePasswordMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.K))); | System.Windows.Forms.Keys.P)));
this.changePasswordMainMenu.Size = new System.Drawing.Size(232, 22); this.changePasswordMainMenu.Size = new System.Drawing.Size(241, 22);
this.changePasswordMainMenu.Text = "Change Password"; this.changePasswordMainMenu.Text = "Change Password";
this.changePasswordMainMenu.Click += new System.EventHandler(this.ChangePasswordMainMenu_Click); this.changePasswordMainMenu.Click += new System.EventHandler(this.ChangePasswordMainMenu_Click);
// //
@ -478,9 +480,9 @@ public void InitializeComponent()
// //
this.settingsMainMenu.Name = "settingsMainMenu"; this.settingsMainMenu.Name = "settingsMainMenu";
this.settingsMainMenu.ShortcutKeyDisplayString = ""; this.settingsMainMenu.ShortcutKeyDisplayString = "";
this.settingsMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) this.settingsMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S))); | System.Windows.Forms.Keys.T)));
this.settingsMainMenu.Size = new System.Drawing.Size(232, 22); this.settingsMainMenu.Size = new System.Drawing.Size(241, 22);
this.settingsMainMenu.Text = "Settings"; this.settingsMainMenu.Text = "Settings";
this.settingsMainMenu.Click += new System.EventHandler(this.SettingsMainMenu_Click); this.settingsMainMenu.Click += new System.EventHandler(this.SettingsMainMenu_Click);
// //
@ -1302,6 +1304,7 @@ public void InitializeComponent()
this.Activated += new System.EventHandler(this.MainWindow_Activated); this.Activated += new System.EventHandler(this.MainWindow_Activated);
this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); this.Deactivate += new System.EventHandler(this.MainForm_Deactivate);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
this.Load += new System.EventHandler(this.MainWindow_Load); this.Load += new System.EventHandler(this.MainWindow_Load);
this.Shown += new System.EventHandler(this.MainForm_Shown); this.Shown += new System.EventHandler(this.MainForm_Shown);
this.Resize += new System.EventHandler(this.MainForm_Resize); this.Resize += new System.EventHandler(this.MainForm_Resize);