diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-04-28 22:49:32 +0100 |
|---|---|---|
| committer | Alex-TIMEHACK <[email protected]> | 2017-04-28 22:49:32 +0100 |
| commit | cfd245999971496cf445b35be0d83019c12a3025 (patch) | |
| tree | 5d3ad8f61efe906d56d4b8891b93621b87cb1838 /TimeHACK.Main/OS/Win95/Win95.cs | |
| parent | c373334a2408e5469c7d8cdd86e29014a188d494 (diff) | |
| download | histacom2-cfd245999971496cf445b35be0d83019c12a3025.tar.gz histacom2-cfd245999971496cf445b35be0d83019c12a3025.tar.bz2 histacom2-cfd245999971496cf445b35be0d83019c12a3025.zip | |
Pretty much started my WordPad Application
Just need to add some non-Designer related code next
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index a160251..e70d90e 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -232,6 +232,14 @@ namespace TimeHACK.OS.Win95 { ie = null; } + + private void WordPadToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassicWordPad wp = new WinClassicWordPad(); + WinClassic app = wm.startWin95(wp, "Wordpad", null, true, true); + app.BringToFront(); + startmenu.Hide(); + } } } |
