NotpadForm.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:0k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Windows.Forms;
  3. namespace NotepadForms
  4. {
  5.   public class MyForm : System.Windows.Forms.Form
  6.   {
  7.     public MyForm()
  8.     {
  9.     }
  10.     [STAThread]
  11.     static void Main()
  12.     {
  13.       Application.Run(new MyForm());
  14.     } 
  15.   }
  16. }