添加项目文件。
This commit is contained in:
18
Constant/DefaultConstant.cs
Normal file
18
Constant/DefaultConstant.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
/// <summary>
|
||||
/// 默认参数
|
||||
/// </summary>
|
||||
namespace GeekDesk.Constant
|
||||
{
|
||||
enum DefaultConstant
|
||||
{
|
||||
WINDOW_WIDTH = 650, //默认窗体宽度
|
||||
WINDOW_HEIGHT = 700, //默认窗体高度
|
||||
MENU_CARD_WIDHT = 150 //默认菜单栏宽度
|
||||
}
|
||||
}
|
||||
15
Constant/SortType.cs
Normal file
15
Constant/SortType.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace GeekDesk.Constant
|
||||
{
|
||||
enum SortType
|
||||
{
|
||||
CUSTOM = 1, //自定义排序
|
||||
NAME = 2, //按名称排序
|
||||
COUNT = 3 //按使用次数排序
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user