AppNotificationButton.ToolTip 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置应用通知按钮的工具提示文本。
public:
property Platform::String ^ ToolTip { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring ToolTip();
void ToolTip(winrt::hstring value);
public string ToolTip { get; set; }
var string = appNotificationButton.toolTip;
appNotificationButton.toolTip = string;
Public Property ToolTip As String
属性值
包含工具提示文本的字符串。
示例
以下示例演示如何使用此属性来设置应用通知按钮的工具提示。
var button = new AppNotificationButton("Reply")
.AddArgument("action", "reply");
if (AppNotificationButton.IsToolTipSupported())
{
button.ToolTip = "Click to reply.";
}
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(button)
.BuildNotification();
AppNotificationManager.Default.Show(notification);
如果支持紧急方案,则为生成的 XML 有效负载:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<action content='Reply' arguments='action=reply' hint-toolTip='Click to reply'/>
</actions>
</toast>
注解
还可以通过调用 AppNotificationButton.SetToolTip 方法设置工具提示文本。
工具提示文本仅在 Windows 10 内部版本 19041 及更高版本上受支持。 调用 AppNotificationButton.IsToolTipSupported 以确定在运行时当前设备上是否支持工具提示。
有关使用 AppNotificationBuilder API 创建应用通知 UI 的指导,请参阅 应用通知内容。
有关应用通知的 XML 架构的参考信息,请参阅 应用通知内容架构。