NotpadForm.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:0k
- using System;
- using System.Windows.Forms;
- namespace NotepadForms
- {
- public class MyForm : System.Windows.Forms.Form
- {
- public MyForm()
- {
- }
- [STAThread]
- static void Main()
- {
- Application.Run(new MyForm());
- }
- }
- }