如何在工具提示中自动换行文字

时间:2010-07-12 13:09:55

标签: c# winforms

如何对需要在工具提示中显示的文字进行自动换行

5 个答案:

答案 0 :(得分:7)

看起来不直接支持:

  

如何自动换行显示的工具提示?

     

这是一个使用Reflection的方法   实现这一目标。

[ DllImport( "user32.dll" ) ] 
private extern static int SendMessage( IntPtr hwnd, uint msg,
  int wParam, int lParam); 

object o = typeof( ToolTip ).InvokeMember( "Handle",
   BindingFlags.NonPublic | BindingFlags.Instance |
   BindingFlags.GetProperty, 
   null, myToolTip, null ); 
IntPtr hwnd = (IntPtr) o; 
SendMessage( hwnd, 0x0418, 0, 300 );
     

Rhett Gong

答案 1 :(得分:5)

另一种方法是创建一个自动换行的正则表达式。

WrappedMessage := RegExReplace(LongMessage,"(.{50}\s)","$1`n")

link

答案 2 :(得分:1)

这是我最近写的一篇文章,我知道它不是最好的,但它有效。您需要按如下方式扩展ToolTip控件:

using System;
using System.Collections.Generic;
using System.Windows.Forms;

public class CToolTip : ToolTip
{
   protected Int32 LengthWrap { get; private set; }
   protected Control Parent { get; private set; }
   public CToolTip(Control parent, int length)
      : base()
   {
    this.Parent = parent;
    this.LengthWrap = length;
   }

   public String finalText = "";
   public void Text(string text)
   {
      var tText = text.Split(' ');
      string rText = "";

      for (int i = 0; i < tText.Length; i++)
      {
         if (rText.Length < LengthWrap)
         {
           rText += tText[i] + " ";
         }
         else
         {
             finalText += rText + "\n";
             rText = tText[i] + " ";
         }

         if (tText.Length == i+1)
         {
             finalText += rText;
         }
      }
  }
      base.SetToolTip(Parent, finalText);
  }
}

你将使用它:

CToolTip info = new CToolTip(Control,LengthWrap);
         info.Text("It looks like it isn't supported directly. There is a workaround at
         http://windowsclient.net/blogs/faqs/archive/2006/05/26/how-do-i-word-wrap-the-
         tooltip-that-  is-displayed.aspx:");

答案 3 :(得分:1)

对于WPF,您可以使用TextWrapping属性:

<ToolTip>
    <TextBlock Width="200" TextWrapping="Wrap" Text="Some text" />
</ToolTip>

答案 4 :(得分:0)

您可以使用e.ToolTipSize属性设置工具提示的大小,这会强制自动换行:

public class CustomToolTip : ToolTip
{
    public CustomToolTip () : base()
    {
        this.Popup += new PopupEventHandler(this.OnPopup);
    }

    private void OnPopup(object sender, PopupEventArgs e) 
    {
        // Set custom size of the tooltip
        e.ToolTipSize = new Size(200, 100);
    }
}