专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅
Adding Hyperlink Capability to RichText BoxesThis tip show how to add hyperlinks o a RichTextBox. What you need to create is two es that will eract with the RichTextBox.The two es are CHyperlink and CHyperlinks.CHyperlinkCHyperLink is a simple Cl [阅读全文] [PDF]
代码如下:private void MoveCurorLast() { //让文本框获取焦点 this.richTextBox1.Focus(); //设置光标的位置到文本尾 this.richTextBox1.Select(this.richTextBox1.TextLength, 0); //滚动到控件光标处 this.richTextBox1.ScrollToCaret(); } [阅读全文] [PDF]
1 共2条 分1页