loadstatus.cs
来自「微软的行业应用解决方案示例」· CS 代码 · 共 26 行
CS
26 行
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;
namespace HardwareDistributor.Utilities
{
//DO NOT CHANGE VALUES. The splash screen intercepts and inteprets these numbers
enum LoadStatus
{
LoadingConfiguration = 1,
SearchLocalDb = 2,
TestingIis = 3,
SynchronizingDb = 4,
ShuttingDown = 5,
CreatingDbConnection = 6,
SyncServerUnavailable = 7,
NetworkUnavailable = 8,
CheckingNetwork = 9,
DbUnavailable = 10,
DbInitialization = 11,
ErrorInitSystem = 12,
StandaloneMode = 13,
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?