application8.cs
来自「Data Structures and Algorithms with Obj」· CS 代码 · 共 26 行
CS
26 行
namespace Opus6
{
using System;
using System.Drawing;
using System.Windows.Forms;
[Version("$Id: Application8.cs,v 1.4 2001/11/04 20:49:34 brpreiss Exp $"), Copyright("Copyright (c) 2001 by Bruno R. Preiss, P.Eng.")]
public class Application8 : TTY
{
public static void Main()
{
Form form1 = new Form();
form1.Size = new Size(490, 380);
form1.Controls.Add(new Application8());
Application.Run(form1);
}
public override void Run()
{
new Simulation().Run(10000);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?