diff options
| author | lempamo <[email protected]> | 2017-04-09 14:05:04 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-04-09 14:05:04 -0400 |
| commit | fbdca852b1fc901db6a09fc22fd523160489f7ed (patch) | |
| tree | 45c1bf482e45ddd7a2f7a2b61476e7a3c7da782c /TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs | |
| parent | a428bf2117d61d92e41e48454601a4e788847e9e (diff) | |
| download | histacom2-fbdca852b1fc901db6a09fc22fd523160489f7ed.tar.gz histacom2-fbdca852b1fc901db6a09fc22fd523160489f7ed.tar.bz2 histacom2-fbdca852b1fc901db6a09fc22fd523160489f7ed.zip | |
added notepad
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs new file mode 100644 index 0000000..5835c6d --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace TimeHACK.OS.Win95.Win95Apps +{ + public partial class Win95Notepad : UserControl + { + public Win95Notepad() + { + InitializeComponent(); + foreach (ToolStripMenuItem item in menuStrip1.Items) + { + item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); + item.BackColor = Color.Silver; + item.BackgroundImage = Properties.Resources.sliversilver; + item.BackgroundImageLayout = ImageLayout.None; + item.DisplayStyle = ToolStripItemDisplayStyle.Text; + } + } + + private void exitToolStripMenuItem_Click(object sender, EventArgs e) + { + this.ParentForm.Close(); + } + } +} |
