C# winform自定义Label控件使其能设置行距

 

1)在windows窗体应用程序中添加组件类代码如下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.ComponentModel;
namespace WindowsFormsApplication10
{
    public partial class LabelTx : System.Windows.Forms.Label
    {
        int lineDistance = 5;//行间距    
        Graphics gcs;
        int iHeight = 0, height = 200;
        string[] nrLine;
        string[] nrLinePos;
        int searchPos = 0;
        int section = 1;
        public int LineDistance
        {
            get { return lineDistance; }
            set
            {
                lineDistance = value;
                Changed(this.Font, this.Width, this.Text);
            }
        }
        public LabelTx()
            : base()
        {
            //this.TextChanged += new EventHandler(LabelTx_TextChanged);   
            this.SizeChanged += new EventHandler(LabelTx_SizeChanged);
            this.FontChanged += new EventHandler(LabelTx_FontChanged);
            //this.Font = new Font(this.Font.FontFamily, this.Font.Size, GraphicsUnit.Pixel);  
        }
        void LabelTx_FontChanged(object sender, EventArgs e)
        {
            Changed(this.Font, this.Width, this.Text);
        }
        void LabelTx_SizeChanged(object sender, EventArgs e)
        {
            Changed(this.Font, this.Width, this.Text);
        }
        public LabelTx(IContainer container)
        {
            container.Add(this);
            //base.Height   
            //InitializeComponent();   
        }
        public int FHeight
        {
            get { return this.Font.Height; }
        }
        protected int Height
        {
            get { return height; }
            set
            {
                height = value;
                base.Height = value;
            }
        }
        public override string Text
        {
            get
            {
                return base.Text;
            }
            set
            {
                //is.Font.Size.                       
                base.Text = value;
                Changed(this.Font, this.Width, value);
            }
        }
        protected void Changed(Font ft, int iWidth, string value)
        {
            iHeight = 0;
            if (value != "")
            {
                if (gcs == null)
                {
                    gcs = this.CreateGraphics();
                    SizeF sf0 = gcs.MeasureString(new string('测', 20), ft);
                    searchPos = (int)(iWidth * 20 / sf0.Width);
                }
                nrLine = value.Split(new string[1] { "/r/n" }, StringSplitOptions.RemoveEmptyEntries);
                section = nrLine.Length;
                nrLinePos = new string[section];
                SizeF sf1, sf2;
                string temps, tempt;
                string drawstring;
                int temPos, ipos;
                for (int i = 0; i < section; i++)
                {
                    ipos = 0;
                    temPos = searchPos;
                    if (searchPos >= nrLine[i].Length)
                    {
                        ipos += nrLine[i].Length;
                        nrLinePos[i] += "," + ipos.ToString();
                        iHeight++;
                        continue;
                    }
                    drawstring = nrLine[i];
                    nrLinePos[i] = "";
                    while (drawstring.Length > searchPos)
                    {
                        bool isfind = false;
                        for (int j = searchPos; j < drawstring.Length; j++)
                        {
                            temps = drawstring.Substring(0, j);
                            tempt = drawstring.Substring(0, j + 1);
                            sf1 = gcs.MeasureString(temps, ft);
                            sf2 = gcs.MeasureString(tempt, ft);
                            if (sf1.Width < iWidth && sf2.Width > iWidth)
                            {
                                iHeight++;
                                ipos += j;
                                nrLinePos[i] += "," + ipos.ToString();
                                isfind = true;
                                drawstring = drawstring.Substring(j);
                                break;
                            }
                        }
                        if (!isfind)
                        {
                            //drawstring = drawstring.Substring(searchPos);   
                            //iHeight++;   
                            break;
                        }
                    }
                    ipos += drawstring.Length;
                    nrLinePos[i] += "," + ipos.ToString();
                    iHeight++;
                    //tempLine = (int)(sf1.Width - 1) / this.Width + 1;                          
                    //iHeight += tempLine;   
                }
            }
            this.Height = iHeight * (ft.Height + lineDistance);
        }
        protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
        {
            //base.OnPaint(e);              
            //if (isPaint) return;   
            //isPaint = true;   
            Graphics g = e.Graphics;
            String drawString = this.Text;
            Font drawFont = this.Font;
            SolidBrush drawBrush = new SolidBrush(this.ForeColor);
            SizeF textSize = g.MeasureString(this.Text, this.Font);//文本的矩形区域大小     
            int lineCount = Convert.ToInt16(textSize.Width / this.Width) + 1;//计算行数     
            int fHeight = this.Font.Height;
            int htHeight = 0;

            this.AutoSize = false;
            float x = 0.0F;
            float y = 0.0F;
            StringFormat drawFormat = new StringFormat();
            int step = 1;
            bool isFirst = true;
            SizeF sf1, sf2;
            string subN, subN1;
            lineCount = drawString.Length;//行数不超过总字符数目      
            int i, idx, first;
            string subStr, tmpStr = "", midStr = "";
            string[] idxs;
            for (i = 0; i < section; i++)
            {
                first = 0;
                subStr = nrLine[i];
                if (nrLinePos[i] != null) tmpStr = nrLinePos[i].TrimStart(',');
                midStr = subStr.Substring(first);
                if (tmpStr != "")
                {
                    idxs = tmpStr.Split(',');
                    for (int j = 0; j < idxs.Length; j++)
                    {
                        idx = int.Parse(idxs[j]);
                        midStr = subStr.Substring(first, idx - first);
                        e.Graphics.DrawString(midStr, drawFont, drawBrush, x, Convert.ToInt16(htHeight), drawFormat);
                        htHeight += (fHeight + lineDistance);
                        first = idx;
                    }
                    //midStr = subStr.Substring(first);   
                }
                //e.Graphics.DrawString(midStr, drawFont, drawBrush, x, Convert.ToInt16(htHeight), drawFormat);  
                //htHeight += ( lineDistance);//fHeight +   
            }
        }
    }
} 


 

2)在工具栏中将自定义的LabelTx控件添加到winform窗体。

3)设置LabelTx控件的属性Size但是高度设置无效。

4)在LabelTx控件的属性Text中输入文字并且设置LineDistance属性就OK了。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值