123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Drawing;
- using System.Windows.Forms;
- namespace DllXqManager
- {
- class Class1:Label
- {
- public Class1()
- {
- this.Text = "测试";
- }
- }
- }
|