Skip to content

Commit 446689e

Browse files
committed
Replace MenuStrip with MainMenu, make color-changing settings permanent, and rename "About Task Manager" to "About"
1 parent 0ebe198 commit 446689e

File tree

137 files changed

+3948
-240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+3948
-240
lines changed
12 KB
Binary file not shown.
12 KB
Binary file not shown.
12 KB
Binary file not shown.

SimpleTaskManager-32bit/AboutForm.Designer.cs

Lines changed: 134 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
9+
using System.Windows.Forms;
10+
11+
namespace SimpleTaskManager
12+
{
13+
public partial class AboutForm : Form
14+
{
15+
public AboutForm()
16+
{
17+
InitializeComponent();
18+
}
19+
20+
private void btnOk_Click(object sender, EventArgs e)
21+
{
22+
this.Close();
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)