123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Text;
- namespace RemoteControlLib.Common
- {
-
-
-
- public class Constant
- {
-
-
-
- public const int SleepTime = 1000;
-
-
-
- public const int MaxTimes = 100;
-
-
-
- public const int Port_Main = 5566;
-
-
-
- public const int Port_File = 6566;
-
-
-
- public const int Port_Screen = 7566;
-
-
-
-
-
-
-
- public static System.Drawing.Size ScreenSize = new System.Drawing.Size(1024, 768);
-
-
-
- public const string ParentPath = "上一层";
-
-
-
- public const string UnknowFileType = "/";
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|