?? demo10.cs
字號:
namespace Opus6
{
using System;
using System.Drawing;
using System.Windows.Forms;
[Copyright("Copyright (c) 2001 by Bruno R. Preiss, P.Eng."), Version("$Id: Demo10.cs,v 1.4 2001/11/04 20:49:34 brpreiss Exp $")]
public class Demo10 : TTY
{
public static void Main()
{
Form form1 = new Form();
form1.Size = new Size(490, 380);
form1.Controls.Add(new Demo10());
Application.Run(form1);
}
public override void Run()
{
GraphAsMatrix.Main();
DigraphAsMatrix.Main();
GraphAsLists.Main();
DigraphAsLists.Main();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -