FormAutoDo.cs 434 B

1234567891011121314151617181920212223
  1. //时间:
  2. //作者:
  3. //功能:自动化测试功能
  4. using System;
  5. using System.Collections.Generic;
  6. using System.ComponentModel;
  7. using System.Data;
  8. using System.Drawing;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using System.Windows.Forms;
  13. namespace AutoDo
  14. {
  15. public partial class FormAutoDo : Form
  16. {
  17. public FormAutoDo()
  18. {
  19. InitializeComponent();
  20. }
  21. }
  22. }