📄 slashdeco.cs
字号:
using System;
using System.Windows.Forms;
using System.Drawing ;
namespace SlashDecorator
{
/// <summary>
/// Summary description for SlashDeco.
/// </summary>
public class SlashDeco:CoolDecorator {
private Pen rPen;
//----------------
public SlashDeco(Control c, Control bc):base(c, bc) {
rPen = new Pen(Color.Red , 2);
}
//----------------
public override void paint(object sender, PaintEventArgs e){
Graphics g = e.Graphics ;
x1=0; y1=0;
x2=this.Size.Width ;
y2=this.Size.Height ;
g.DrawLine (rPen, x1, y1, x2, y2);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -