⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 windows app (c#).wiz

📁 UEStudioPortable.rar
💻 WIZ
字号:
[UDT]

Compiler = Microsoft .NET\Visual C# compiler\Windows Application

File0 = $(PRJNAME).cs

[File0]
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace $(PRJNAME) {
  public class Form1 : System.Windows.Forms.Form {
    private System.ComponentModel.Container components = null;

    public Form1() {
      InitializeComponent();
    }

    protected override void Dispose(bool disposing) {
      if(disposing) {
        if (components != null) {
          components.Dispose();
        }
      }
      base.Dispose(disposing);
    }

    #region Windows Form Designer generated code
    private void InitializeComponent()
    {
      this.components = new System.ComponentModel.Container();
      this.Size = new System.Drawing.Size(300,300);
      this.Text = "Form1";
    }
    #endregion

    [STAThread]
    static void Main() {
      Application.Run(new Form1());
    }
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -