mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Renamed FileMainMenu_DropDownOpened
This commit is contained in:
parent
b1cc915d83
commit
62d4f3d54a
2 changed files with 5 additions and 4 deletions
5
Crypto Notepad/MainForm.Designer.cs
generated
5
Crypto Notepad/MainForm.Designer.cs
generated
|
|
@ -1,4 +1,4 @@
|
|||
namespace Crypto_Notepad
|
||||
namespace Crypto_Notepad
|
||||
{
|
||||
partial class MainForm
|
||||
{
|
||||
|
|
@ -182,7 +182,7 @@ public void InitializeComponent()
|
|||
this.fileMainMenu.Name = "fileMainMenu";
|
||||
this.fileMainMenu.Size = new System.Drawing.Size(37, 24);
|
||||
this.fileMainMenu.Text = "File";
|
||||
this.fileMainMenu.DropDownOpened += new System.EventHandler(this.fileMainMenu_DropDownOpened);
|
||||
this.fileMainMenu.DropDownOpened += new System.EventHandler(this.FileMainMenu_DropDownOpened);
|
||||
//
|
||||
// newMainMenu
|
||||
//
|
||||
|
|
@ -425,6 +425,7 @@ public void InitializeComponent()
|
|||
// settingsMainMenu
|
||||
//
|
||||
this.settingsMainMenu.Name = "settingsMainMenu";
|
||||
this.settingsMainMenu.ShortcutKeyDisplayString = "";
|
||||
this.settingsMainMenu.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt)
|
||||
| System.Windows.Forms.Keys.S)));
|
||||
this.settingsMainMenu.Size = new System.Drawing.Size(201, 22);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
using Crypto_Notepad.Properties;
|
||||
using Crypto_Notepad.Properties;
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
|
|
@ -1119,7 +1119,7 @@ private void ExitMainMenu_Click(object sender, EventArgs e)
|
|||
Application.Exit();
|
||||
}
|
||||
|
||||
private void fileMainMenu_DropDownOpened(object sender, EventArgs e)
|
||||
private void FileMainMenu_DropDownOpened(object sender, EventArgs e)
|
||||
{
|
||||
if (filePath == "")
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue