我正在寻找一种方法来改善现有的应用程序之旅。我见过googlemap最新的“MapsGL!”浏览并希望为我们的应用程序实现类似的东西,这是用C#编写的。
用例是向我们的客户显示相应控件附近的一系列工具提示,应该点击这些工具提示以完成工作流程。
无论如何我们可以在C#中做到这一点吗?
[编辑]
我所说的应用程序是WINDOWS应用程序而不是WEB应用程序
答案 0 :(得分:0)
Hello try with Tooltip property
<asp:webcontrol id="id" ToolTip="string" runat="server" />
For example button
<form runat="server">
<asp:Button id="button1" Text="Submit" runat="server"
ToolTip="This is an example-button" />
</form>