本文介绍了显示带有按钮/图像的工具提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个任务,其中我必须显示带有按钮/图像和文本的工具提示,如果用户单击工具提示的按钮/图像,则它应该展开并显示带有链接的附加说明.单击链接应在新窗口中打开URL.

那我该怎么办呢?最好的方法是什么?
在此先感谢

i have a task, in which i have to display a ToolTip with a button/image and text, if the user clicks on the tooltip''s button/image it should expand and show addition description with links. clicking on the link should open the URL in new window.

so how can i do it? Whats the best way?
Thanks in advance

推荐答案


ToolTip1.ToolTipIcon = ToolTipIcon.Info
ToolTip1.BackColor = Color.Khaki
ToolTip1.ForeColor = Color.DarkKhaki
ToolTip1.SetToolTip(button1, "Click me to save data.")



祝您编码愉快!
:)



Happy Coding!
:)


这篇关于显示带有按钮/图像的工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-17 23:53