我一定是个傻瓜,但是
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
。怎么样?
答案 0 :(得分:0)
使用Tag
或任何其他自定义属性似乎是实现此目的的唯一解决方案。