优化功能 beta

This commit is contained in:
liufei
2021-05-19 17:31:28 +08:00
parent 105b0f981e
commit 4701ecc781
17 changed files with 407 additions and 111 deletions

14
Constant/AppHideType.cs Normal file
View File

@@ -0,0 +1,14 @@

/// <summary>
/// 面板隐藏方式
/// </summary>
namespace GeekDesk.Constant
{
public enum AppHideType
{
LOST_FOCUS = 1, // 失去焦点后
START_EXE = 2, //启动程序后
HANDLE = 3 //手动关闭
}
}

View File

@@ -3,7 +3,7 @@
/// </summary>
namespace GeekDesk.Constant
{
enum DefaultConstant
public enum DefaultConstant
{
WINDOW_WIDTH = 666, //默认窗体宽度
WINDOW_HEIGHT = 500, //默认窗体高度

View File

@@ -9,7 +9,7 @@ using System.Threading.Tasks;
/// </summary>
namespace GeekDesk.Constant
{
enum IconStartType
public enum IconStartType
{
DEFAULT_STARTUP = 1, //默认启动方式
ADMIN_STARTUP = 2, //管理员方式启动

View File

@@ -1,6 +1,6 @@
namespace GeekDesk.Constant
{
enum SortType
public enum SortType
{
CUSTOM = 1, //自定义排序
NAME = 2, //按名称排序