[我正在开发一个使用NodeRT在Windows 10中显示Toast通知的Electron应用程序,到目前为止,我已经可以正常工作,并且“ ToastGeneric”通知可以正常显示。
预计该应用会在收到来电时向用户显示通知。
常规的烤面包很好看:
但是,如果我在scenario="incomingCall"
上添加<toast>
,则会弄乱UI。
我在任何地方都找不到关于此行为的任何适当文档。我什至尝试使用Microsoft提供的code sample,但这也不起作用。
任何想法这哪里出错了?
这是我的吐司有效载荷:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>%s</text>
<text>%s, %s</text>
<group>
<subgroup>
<text hint-style="base">52 attendees</text>
<text hint-style="captionSubtle">23 minute drive</text>
</subgroup>
<subgroup>
<text hint-style="captionSubtle" hint-align="right">1 Microsoft Way</text>
<text hint-style="captionSubtle" hint-align="right">Bellevue, WA 98008</text>
</subgroup>
</group>
</binding>
</visual>
<actions>
<action arguments = 'answer'
content = 'answer' />
<action arguments = 'ignore'
content = 'ignore' />
</actions>
</toast>
根据@Richard Zhang提供的建议,我在Notifications Visualizer中试用了该模板。