如何显示有关此按钮的功能的信息

时间:2018-04-06 15:21:14

标签: c# xaml uwp

我正在开发一个UWP应用程序。我想在用户将光标移动到该按钮时显示有关特定按钮的一些信息。就像下图一样。我需要你的帮助。我怎样才能做到这一点 ? enter image description here

2 个答案:

答案 0 :(得分:4)

这是工具提示,您可以在此处查看文档: https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.tooltip

<!-- A button with a simple ToolTip. -->
<Button Content="Button with a simple ToolTip." ToolTipService.ToolTip="Simple ToolTip" />

答案 1 :(得分:4)

这样的事情应该有效:

<Button x:Name="button" Content="Image ToolTip" HorizontalAlignment="Center">
  <ToolTipService.ToolTip>
    // put whatever you want to appear in tooltip here.
  </ToolTipService.ToolTip>
</Button>