diff options
| author | lempamo <[email protected]> | 2017-04-09 19:47:16 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-09 19:47:16 -0400 |
| commit | 4220bf61888a0e4d82fbaf45b43a927e29f06cf5 (patch) | |
| tree | f84d14bbcb4fdcae4e0ed414359e1d6674a08bdb /TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs | |
| parent | cacc942f3267a82672f32407c3a64f5fd18019e5 (diff) | |
| parent | 486d33b73a8beec3c1080cf5c501ceeafcddc4fa (diff) | |
| download | histacom2-4220bf61888a0e4d82fbaf45b43a927e29f06cf5.tar.gz histacom2-4220bf61888a0e4d82fbaf45b43a927e29f06cf5.tar.bz2 histacom2-4220bf61888a0e4d82fbaf45b43a927e29f06cf5.zip | |
Merge pull request #40 from lempamo/master
about boxes
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs index 5835c6d..6542f4c 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs @@ -7,6 +7,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; +using TimeHACK.Engine; namespace TimeHACK.OS.Win95.Win95Apps { @@ -29,5 +30,11 @@ namespace TimeHACK.OS.Win95.Win95Apps { this.ParentForm.Close(); } + + private void aboutNotepadToolStripMenuItem_Click(object sender, EventArgs e) + { + WindowManager wm = new WindowManager(); + wm.startAboutBox95("Notepad", "Microsoft Notepad", Properties.Resources.WinClassicNotepad); + } } } |
