前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >[C#]richtextbox实现行号

[C#]richtextbox实现行号

作者头像
静默虚空
发布2022-05-07 18:25:36
1.1K0
发布2022-05-07 18:25:36
举报
代码语言:javascript
复制
editorControl是一个userControl,其包含两个控件:左侧是一个用来显示行号的RichTextBox(使用label等均可),右侧是一个继承自RichTextBox的componenteditorGrid1。

/*实现行号 begin*/

(1) 添加事件
        private void richTextBoxMain_TextChanged(object sender, EventArgs e)
        {
            updateLabelRowIndex();
        }

        private void richTextBoxMain_FontChanged(object sender, EventArgs e)
        {
            updateLabelRowIndex();
            richTextBoxMain_VScroll(null, null);
        }

        private void richTextBoxMain_Resize(object sender, EventArgs e)
        {
            richTextBoxMain_VScroll(null, null);
        }

        private void richTextBoxMain_VScroll(object sender, EventArgs e)
        {
            //move location of numberLabel for amount of pixels caused by scrollbar
            int p = richTextBoxMain.GetPositionFromCharIndex(0).Y % (richTextBoxMain.Font.Height + 1);
            labelRowIndex.Location = new Point(0,p);
            updateLabelRowIndex();
        }

(2)更新行号的函数

        private void updateLabelRowIndex()
        {
            //we get index of first visible char and number of first visible line
            Point pos = new Point(0,0);
            int firstIndex = this.richTextBoxMain.GetCharIndexFromPosition(pos);
            int firstLine = this.richTextBoxMain.GetLineFromCharIndex(firstIndex);

            //now we get index of last visible char and number of last visible line
            pos.X += this.richTextBoxMain.ClientRectangle.Width;
            pos.Y += this.richTextBoxMain.ClientRectangle.Height;
            int lastIndex = this.richTextBoxMain.GetCharIndexFromPosition(pos);
            int lastLine = this.richTextBoxMain.GetLineFromCharIndex(lastIndex);

            //this is point position of last visible char, 
            //we'll use its Y value for calculating numberLabel size
            pos = this.richTextBoxMain.GetPositionFromCharIndex(lastIndex);

            labelRowIndex.Text = "";
            for (int i = firstLine; i <= lastLine +1 ; i++)
            {
                labelRowIndex.Text += i + 1 + "\r\n";
            }
        }     
        /*end*/
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2011-07-27,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档