简体   繁体   English

为C#中的派生标签控件覆盖AutoSize

[英]Override AutoSize for derived Label Control in C#

I am trying to extend the System.Windows.Forms.Label class to support vertically drawn text. 我正在尝试扩展System.Windows.Forms.Label类以支持垂直绘制的文本。 I do this by creating a new property called MyLabelOrientation that the user can set to Horizontal or Vertical. 为此,我创建了一个名为MyLabelOrientation的新属性,用户可以将其设置为Horizo​​ntal或Vertical。 When the user changes this setting, the values for width and height are swapped to resize the control to its new orientation. 当用户更改此设置时,将交换宽度和高度的值以将控件调整为新的方向。 Finally, I override the OnPaint function to draw my Label. 最后,我重写了OnPaint函数以绘制标签。

I would like to extend the AutoSize property for this control as well so that my Label will auto-size to the text it contains. 我也想扩展此控件的AutoSize属性,以便我的Label自动调整其包含的文本的大小。 For the horizontal orientation, the base functionality implements this for me. 对于水平方向,基本功能为我实现了此功能。 For the vertical orientation, I create a Graphics object and set the height of the control to the width of the SizeF object returned from Graphics.MeasureString(Text, Font). 对于垂直方向,我创建了一个Graphics对象,并将控件的高度设置为从Graphics.MeasureString(Text,Font)返回的SizeF对象的宽度。 You can see an example of the code I'm using below. 您可以在下面看到我正在使用的代码示例。

using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.ComponentModel.Design;
using System.Windows.Forms.Design;

public class MyLabel : Label
{
    public enum MyLabelOrientation {Horizontal, Vertical};
    protected MyLabelOrientation m_orientation = MyLabelOrientation.Horizontal;

    [Category("Appearance")]
    public virtual MyLabelOrientation Orientation
    {
        get { return m_orientation; }
        set
        {
            m_orientation = value;
            int temp = Height;
            Width = Height;
            Height = temp;
            Refresh();
        }
    }

    private Size ResizeLabel()
    {
        Graphics g = Graphics.FromHwnd(this.Handle);
        SizeF newSize = g.MeasureString(Text, Font);
        if (m_orientation == MyLabelOrientation.Horizontal)
            Width = (int)newSize.Width;
        else
            Height = (int)newSize.Width;
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        Brush textBrush = new SolidBrush(this.ForeColor);

        if (m_orientation == LabelOrientation.Vertical)
        {
            e.Graphics.TranslateTransform(Width, 0);
            e.Graphics.RotateTransform(90);
            e.Graphics.DrawString(Text, Font, textBrush, Padding.Left, Padding.Top);
        }
        else
        {
            base.OnPaint(e);
        }
    }
}

However, setting AutoSize to true seems to prevent and/or override any changes to the size of the control. 但是,将AutoSize设置为true似乎可以防止和/或覆盖对控件大小的任何更改。 This means that I can't change the width or height when I want to change the Label's orientation. 这意味着我想更改标签的方向时无法更改宽度或高度。 I'm wondering if this behavior can be overridden, so that I can test whether AutoSize is set, and then adjust the size of the control according to it's orientation. 我想知道是否可以覆盖此行为,以便可以测试是否设置了AutoSize,然后根据控件的方向调整控件的大小。

I have not done this before, I believe you can theoretically override a property declaration (via the new keyword) and check the orientation before proceeding: 我之前没有做过此操作,我相信您理论上可以覆盖属性声明(通过new关键字)并在继续操作之前检查方向:

override public bool AutoSize
{
   set 
   {
      if( /* orientation is horizontal */ )
      {
          base.AutoSize = value;
      }
      else
      {
          // do what you need to do
      }    
   }    
}

If think a solution is to override OnResize itself : 如果认为解决方案是重写OnResize本身:

protected override void OnResize(EventArgs e)
{
    if (AutoSize)
    {
        // Perform your own resizing logic
    }
    else
        OnResize(e);
}

I know this aa pretty old question, but i stumbled across it today and was wondering how to do the same thing. 我知道这是一个非常老的问题,但是今天我偶然发现了这个问题,并且想知道如何做同样的事情。

My solution to the problem was overriding the GetPreferredSize(Size proposedSize) method. 我对这个问题的解决方案是重写GetPreferredSize(Size proposedSize)方法。 I used a button class that houses an arrow in addition to the text which, of course, was not taken into account using the AutoSize property so i added additional space and it works fine for me. 我使用了一个按钮类,除了文本之外,该类还包含一个箭头,当然,使用AutoSize属性没有考虑到该文本,因此我添加了额外的空间,对我来说很好用。

Given the problem of changing orientation or switching width and height, you could completely change the way the preferred size is calculated. 考虑到更改方向或切换宽度和高度的问题,您可以完全更改首选大小的计算方式。

public override Size GetPreferredSize(Size proposedSize)
{
    Size s = base.GetPreferredSize(proposedSize);
    if (AutoSize)
    {
        s.Width += 15;
    }
    return s;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM