我已设法在鼠标悬停时制作工具提示,但我希望它也能显示点击次数。
<asp:Image ID="Image2" runat="server" ImageUrl="~/Pictures/question_mark.png" Tooltip="Hello" OnClick="Image2_OnClick" Height="16px" Width="16px" />
protected void Image2_Click(object sender, EventArgs e)
{
//int MilliSeconds = 5000;
//ToolTip toolTip1 = new ToolTip();
//toolTip1.SetToolTip(TextBox1, "Hello");
Image2.ToolTip.Show();
//toolTip1.Show("Devices have been selected according to the package. Please untick the box if you already have the device.");
}
我尝试了上述内容但到目前为止失败了。
帮助将不胜感激。 :)