Skip to content

Commit

Permalink
Merge pull request #4 from AlphaBeta1906/Edit
Browse files Browse the repository at this point in the history
Edit
  • Loading branch information
AlphaBeta1906 authored Sep 29, 2020
2 parents 5383a39 + 9a93fb5 commit bf33d53
Show file tree
Hide file tree
Showing 9 changed files with 2,822 additions and 2 deletions.
4 changes: 4 additions & 0 deletions MyNotes/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 13 additions & 2 deletions MyNotes/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ void DeleteToolStripMenuItemClick(object sender, EventArgs e)
{
richTextBox1.SelectedText = "";
}

void SelectAllToolStripMenuItemClick(object sender, EventArgs e)
{
richTextBox1.SelectAll();
}
//end file menustrip


Expand All @@ -94,11 +99,17 @@ void CutToolStripMenuItemClick(object sender, EventArgs e)
richTextBox1.Cut();
richTextBox1.Copy();
}

void PasteToolStripMenuItemClick(object sender, EventArgs e)
{
richTextBox1.Paste();
}

void CopyToolStripMenuItemClick(object sender, EventArgs e)
{
richTextBox1.Copy();
}

void DateToolStripMenuItemClick(object sender, EventArgs e)
{
string Date = DateTime.Now.ToString("yyyy MMMMM dd");
Expand Down Expand Up @@ -248,7 +259,7 @@ private void MainFormMouseUp(object sender, MouseEventArgs e)
{
mouseDown = false;
}//


}
}// end of code


2,805 changes: 2,805 additions & 0 deletions MyNotes/MainForm.resx

Large diffs are not rendered by default.

Binary file modified MyNotes/bin/Debug/MyNotes.exe
Binary file not shown.
Binary file modified MyNotes/bin/Debug/MyNotes.pdb
Binary file not shown.
Binary file modified MyNotes/obj/Debug/MyNotes.MainForm.resources
Binary file not shown.
Binary file modified MyNotes/obj/Debug/MyNotes.csproj.GenerateResource.Cache
Binary file not shown.
Binary file modified MyNotes/obj/Debug/MyNotes.exe
Binary file not shown.
Binary file modified MyNotes/obj/Debug/MyNotes.pdb
Binary file not shown.

0 comments on commit bf33d53

Please sign in to comment.