-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finish task and publish 2.6.627.0 version
1.Finish task and publish 2.6.627.0 version 2.Add loopback manager page 3.Simplify the code: Use conditional expressions for some if else 4.Fix some bugs
- Loading branch information
1 parent
91c41ab
commit d394e1b
Showing
79 changed files
with
810 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,7 @@ | |
| 系统信息 | 未完成 | | ||
| 驱动管理 | 未完成 | | ||
| 更新管理 | 未完成 | | ||
| 网络回环管理 | 已完成 | | ||
| Windows 系统评估 | 已完成 | | ||
|
||
------ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,7 @@ | |
| 系统信息 | 未完成 | | ||
| 驱动管理 | 未完成 | | ||
| 更新管理 | 未完成 | | ||
| 网络回环管理 | 已完成 | | ||
| Windows 系统评估 | 已完成 | | ||
|
||
------ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
|
||
namespace WindowsTools.Services.Root | ||
{ | ||
/// <summary> | ||
/// 应用进程内全局通知 | ||
/// </summary> | ||
public static class GlobalNotificationService | ||
{ | ||
/// <summary> | ||
/// 应用程序退出时发生的事件 | ||
/// </summary> | ||
public static event EventHandler ApplicationExit; | ||
|
||
/// <summary> | ||
/// 发送消息通知 | ||
/// </summary> | ||
public static void SendNotification() | ||
{ | ||
ApplicationExit?.Invoke(null, EventArgs.Empty); | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.