1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using System;
- using System.Collections.Generic;
- namespace UAS_MES_NEW.Entity
- {
- class SystemInf
- {
-
-
-
- public static string ConnectionString;
-
-
-
- public static string LoginTime;
-
-
-
- public static string CurrentDB;
-
-
-
- public static string DefaultDB;
-
-
-
- public static int ScreenWidth;
-
-
-
- public static int ScreenHeight;
-
-
-
- public static Dictionary<string, Dictionary<string, bool>> Caller = new Dictionary<string, Dictionary<string, bool>>();
-
-
-
- public static List<string> OpenPort=new List<string>();
-
-
-
- public static bool CheckAudioEnable=true;
-
-
-
- public static int NavWidth = 0;
-
-
-
- public static int HeadBarHeight = 0;
-
-
-
- public static int ProcessesID;
-
-
-
- public static bool EnablePrint;
-
-
-
- public static string CacheFolder= Environment.GetEnvironmentVariable("windir").Substring(0, 1)+@":\UAS_MES\CacheFile\";
-
-
-
- public static string LogFolder = Environment.GetEnvironmentVariable("windir").Substring(0, 1) + @":\UAS_MES\Log\";
-
-
-
- public static string CacheFilePath= Environment.GetEnvironmentVariable("windir").Substring(0, 1) + @":\UAS_MES\CacheFile\CacheInfo.xml";
- public static bool UpperCollection = true;
- public static DataOperate.DataHelper dh;
- }
- }
|