colorsyntaxvisitor.cs
来自「微软系列丛书<<C#2005从入门到精通>>」· CS 代码 · 共 22 行
CS
22 行
namespace Tokenizer
{
using System;
using System.Windows.Forms;
using System.Drawing;
sealed class ColorSyntaxVisitor : ITokenVisitor
{
public ColorSyntaxVisitor(RichTextBox rtb)
{
this.target = rtb;
this.target.Clear();
this.index = 0;
}
// to do: implement all the Visit methods
private readonly RichTextBox target;
private int index;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?