TestCountForm.cs 464 B

123456789101112131415161718192021
  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.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using Sunny.UI;
  11. namespace YangjieTester.主界面
  12. {
  13. [FormDescriptionAttribute("测试计数")]
  14. public partial class TestCountForm : UIForm
  15. {
  16. public TestCountForm()
  17. {
  18. InitializeComponent();
  19. }
  20. }
  21. }