我试图用图像显示自己的自定义工具提示,但原生工具提示使一切都不好.
它仍然出现在它不需要的地方.
它仍然出现在它不需要的地方.
我以这种方式创建ToolStripButton:
ToolStripButton btn = new ToolStripButton(); btn.Text = name; btn.ToolTipText = null; //I also tried string.Empty,but no luck
我还能做些什么来禁用它?
解决方法
请尝试以下设置:
btn.AutoToolTip = false; btn.ToolTipText = string.empty;
关于AutoToolTip property的说明:
Set the AutoToolTip property to false to display custom ToolTipText on a ToolStripItem.