Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumzhao committed Feb 23, 2021
1 parent 6298b4d commit eb94dce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Form1.Designer.cs

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

12 changes: 12 additions & 0 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,18 @@ public void SaveTodoList()
Settings.Default.Save();
}
}

private void label6_Click(object sender, EventArgs e)
{
if (this.FormBorderStyle == FormBorderStyle.None)
{
this.FormBorderStyle = FormBorderStyle.Sizable;
}
else if (this.FormBorderStyle == FormBorderStyle.Sizable)
{
this.FormBorderStyle = FormBorderStyle.None;
}
}
}

[Serializable]
Expand Down

0 comments on commit eb94dce

Please sign in to comment.