优化功能 beta
This commit is contained in:
14
Constant/AppHideType.cs
Normal file
14
Constant/AppHideType.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 面板隐藏方式
|
||||
/// </summary>
|
||||
namespace GeekDesk.Constant
|
||||
{
|
||||
public enum AppHideType
|
||||
{
|
||||
LOST_FOCUS = 1, // 失去焦点后
|
||||
START_EXE = 2, //启动程序后
|
||||
HANDLE = 3 //手动关闭
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
/// </summary>
|
||||
namespace GeekDesk.Constant
|
||||
{
|
||||
enum DefaultConstant
|
||||
public enum DefaultConstant
|
||||
{
|
||||
WINDOW_WIDTH = 666, //默认窗体宽度
|
||||
WINDOW_HEIGHT = 500, //默认窗体高度
|
||||
|
||||
@@ -9,7 +9,7 @@ using System.Threading.Tasks;
|
||||
/// </summary>
|
||||
namespace GeekDesk.Constant
|
||||
{
|
||||
enum IconStartType
|
||||
public enum IconStartType
|
||||
{
|
||||
DEFAULT_STARTUP = 1, //默认启动方式
|
||||
ADMIN_STARTUP = 2, //管理员方式启动
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace GeekDesk.Constant
|
||||
{
|
||||
enum SortType
|
||||
public enum SortType
|
||||
{
|
||||
CUSTOM = 1, //自定义排序
|
||||
NAME = 2, //按名称排序
|
||||
|
||||
Reference in New Issue
Block a user