aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-05-01 10:15:05 +0100
committerAlex-TIMEHACK <[email protected]>2017-05-01 10:15:05 +0100
commita8bf32646b66951eef7f2e8477d83d4d3f013a87 (patch)
tree2659eea01895a4077c743aed399aff5631ba9b46 /TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs
parente557e46076e0fe44fb03633665ae40c7d7444461 (diff)
parent93c445239c7d28a6cee7147d7b6dbe3c7f0974f9 (diff)
downloadhistacom2-a8bf32646b66951eef7f2e8477d83d4d3f013a87.tar.gz
histacom2-a8bf32646b66951eef7f2e8477d83d4d3f013a87.tar.bz2
histacom2-a8bf32646b66951eef7f2e8477d83d4d3f013a87.zip
Trying to fix the conflicts
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs87
1 files changed, 0 insertions, 87 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs
deleted file mode 100644
index 390614d..0000000
--- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Notepad.cs
+++ /dev/null
@@ -1,87 +0,0 @@
-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;
-using TimeHACK.Engine;
-
-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.Center;
- item.DisplayStyle = ToolStripItemDisplayStyle.Text;
- }
- }
-
- private void exitToolStripMenuItem_Click(object sender, EventArgs e)
- {
- this.ParentForm.Close();
- }
-
- private void aboutNotepadToolStripMenuItem_Click(object sender, EventArgs e)
- {
- WindowManager wm = new WindowManager();
- wm.startAboutBox95("Notepad", "Microsoft Notepad", Properties.Resources.WinClassicNotepad);
- }
-
- private void wordWrapToolStripMenuItem_Click(object sender, EventArgs e)
- {
- mainText.WordWrap = wordWrapToolStripMenuItem.Checked;
- }
-
- private void selectAllToolStripMenuItem_Click(object sender, EventArgs e)
- {
- mainText.SelectAll();
- }
-
- private void undoToolStripMenuItem_Click(object sender, EventArgs e)
- {
- mainText.Undo();
- }
-
- private void cutToolStripMenuItem_Click(object sender, EventArgs e)
- {
- if (mainText.SelectedText.Length >= 0)
- {
- mainText.Cut();
- }
- }
-
- private void copyToolStripMenuItem_Click(object sender, EventArgs e)
- {
- if (mainText.SelectedText.Length >= 0)
- {
- mainText.Copy();
- }
- }
-
- private void pasteToolStripMenuItem_Click(object sender, EventArgs e)
- {
- mainText.Paste();
- }
-
- private void deleteToolStripMenuItem_Click(object sender, EventArgs e)
- {
- mainText.Text.Remove(mainText.SelectionStart, mainText.SelectedText.Length);
- }
-
- private void timeDateToolStripMenuItem_Click(object sender, EventArgs e)
- {
- string DateTime = System.DateTime.Now.ToString("HH:mm tt dd/MM/yyyy");
- mainText.AppendText(DateTime);
- }
- }
-}