获取工具提示名称

时间:2013-04-11 09:28:34

标签: winforms tooltip

我一定是个傻瓜,但是

    ToolTip tooltip = new ToolTip();
    // tooltip.Name << not exists, lol

我需要这样的东西:

public partial class MyForm : Form
{
    private void InitializeComponent()
    {
        ...
        this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
        this.toolTip2 = new System.Windows.Forms.ToolTip(this.components);
        ...
    }

    private void SomeMethodOfForm()
    {
        SomeMethodOfClassA(components);
    }
}

public class A
{
    public static SomeMethodOfClassA(IContainer container)
    {
        foreach (Component component in container.Components)
            if (component is ToolTip)
                MessageBox.Show("Found ToolTip"); // want to show here "toolTip1" or "toolTip2"
    }
}

我该怎么办?设计师以某种方式显示ToolTip.Name。怎么样?

1 个答案:

答案 0 :(得分:0)

使用Tag或任何其他自定义属性似乎是实现此目的的唯一解决方案。