예제 #1
0
파일: License.cs 프로젝트: byGriS/Spark
 public static void StartLoopCheckLicense(SparkWindow sparkWindow)
 {
     try {
         License.sparkWindow   = sparkWindow;
         checkLicense          = new Timer(10000);
         checkLicense.Elapsed += CheckLicense_Elapsed;
         checkLicense.Enabled  = true;
     } catch { }
 }
예제 #2
0
 public ChangeUserWindow(SparkWindow sparkWindow)
 {
     InitializeComponent();
     this.sparkWindow = sparkWindow;
 }