コード例 #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;
 }