Class1.cs 310 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Drawing;
  7. using System.Windows.Forms;
  8. namespace DllXqManager
  9. {
  10. class Class1:Label
  11. {
  12. public Class1()
  13. {
  14. this.Text = "测试";
  15. }
  16. }
  17. }