CNAS取数仪器端升级
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
473B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace CNAS_SyncService
  10. {
  11. public partial class test : Form
  12. {
  13. public test()
  14. {
  15. InitializeComponent();
  16. }
  17. private void test_Load(object sender, EventArgs e)
  18. {
  19. new SyncServiceOperation().Start();
  20. }
  21. }
  22. }