Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来改进我们应用程序的现有导览。我看过 googlemap 最新的“MapsGL!” 游览并希望为我们用 C# 编写的应用程序实现类似的东西。
用例是向我们的客户展示一系列靠近相应控件的工具提示,应单击这些工具提示以完成工作流程。
无论如何我们可以在 C# 中做到这一点吗?
[编辑]
我正在谈论的应用程序是 WINDOWS 应用程序而不是 WEB 应用程序
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>