⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 字体.txt

📁 c#的知识类库
💻 TXT
字号:
float newSize=Convert.ToSingle(textSize);
			FontFamily currentFontFamily;
			Font newFont;
			currentFontFamily=this.rtfText.SelectionFont.FontFamily;
			newFont=new Font(currentFontFamily,newSize);
			this.rtfText.SelectionFont=newFont;
//----粗体切换
			Font newFont=new Font(this.rtfText.SelectionFont,(this.rtfText.SelectionFont.Bold?this.rtfText.SelectionFont.Style&~FontStyle.Bold:this.rtfText.SelectionFont.Style|FontStyle.Bold));
			this.rtfText.SelectionFont=newFont;
//----斜体切换
			Font newFont=new Font(this.rtfText.SelectionFont,(this.rtfText.SelectionFont.Italic?this.rtfText.SelectionFont.Style&~FontStyle.Italic:this.rtfText.SelectionFont.Style|FontStyle.Italic));
			this.rtfText.SelectionFont=newFont;
//----下划线体切换
			Font newFont=new Font(this.rtfText.SelectionFont,(this.rtfText.SelectionFont.Underline?this.rtfText.SelectionFont.Style&~FontStyle.Underline:this.rtfText.SelectionFont.Style|FontStyle.Underline));
			this.rtfText.SelectionFont=newFont;


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -