123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- using System.Collections.Generic;
- namespace FileWatcher
- {
- 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 IP;
-
-
-
- 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 DataHelper dh;
- public static Boolean OpenByNet = false;
- }
- }
|