📄 rectangle.cs
字号:
namespace Opus6
{
using System;
[Version("$Id: Rectangle.cs,v 1.3 2001/09/11 12:04:04 brpreiss Exp $"), Copyright("Copyright (c) 2001 by Bruno R. Preiss, P.Eng.")]
public class Rectangle : GraphicalObject
{
public Rectangle(Point p, int ht, int wid) : base(p)
{
this.height = ht;
this.width = wid;
}
public override void Draw()
{
}
protected int height;
protected int width;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -