我在我的 Winforms 应用程序中使用 Infragistics NetAdvantage 2010。这是在按钮的鼠标悬停上加载自定义工具提示的代码。
private void button1_MouseHover(object sender, EventArgs e)
{
UltraToolTipInfo toolTipInfo = ultraToolTipManager1.GetUltraToolTip(button1);
toolTipInfo.ToolTipTextStyle = ToolTipTextStyle.Formatted;
ultraToolTipManager1.DisplayStyle = ToolTipDisplayStyle.Office2007;
toolTipInfo.ToolTipTextFormatted = "" +
"<p style='color:Black; font-family:tahoma;'>Details:</p>" +
"<p style='color:Black; font-family:tahoma;'>Name: <t style='color:Black; font-family:tahoma; font-weight:bold;'>Sandeep</t></p>" +
"<t style='color:Black; font-family:tahoma;'>Profile: <t style='color:Black; font-family:tahoma; font-weight:bold;'>Developer</t></t> ";
}
但是当我运行它时,第一次鼠标悬停时工具提示不会出现。它从第二次开始。这里可能是什么问题?