Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

Commit

Permalink
53X Again 69!
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Oct 16, 2020
1 parent d6602f2 commit a27649b
Show file tree
Hide file tree
Showing 11 changed files with 1,211 additions and 766 deletions.
36 changes: 18 additions & 18 deletions Nerator/UC/LIGHT/HISTORY/PWD.Designer.cs

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

205 changes: 205 additions & 0 deletions Nerator/UC/THEME/DK.Designer.cs

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

34 changes: 34 additions & 0 deletions Nerator/UC/THEME/DK.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
using System;
using System.Windows.Forms;
using static Nerator.CS.Window;
using static Nerator.CS.Setting;

namespace Nerator.UC.THEME
{
public partial class DK : UserControl
{
public DK()
{
InitializeComponent();
}

private void DKPL_MouseEnter(object sender, EventArgs e)
{
DKPL.EdgeColor = System.Drawing.Color.DodgerBlue;
}

private void DKPL_MouseLeave(object sender, EventArgs e)
{
DKPL.EdgeColor = System.Drawing.SystemColors.Control;
}

private void DKPL_Click(object sender, EventArgs e)
{
if (WindowMode == WindowType.LIGHT)
{
WindowMode = WindowType.DARK;
Application.Restart();
}
}
}
}
Loading

0 comments on commit a27649b

Please sign in to comment.