Windows 10 Toast通知的方案设置为“ incomingCall”会弄乱通知UI

问题描述 投票:0回答:1

[我正在开发一个使用NodeRT在Windows 10中显示Toast通知的Electron应用程序,到目前为止,我已经可以正常工作,并且“ ToastGeneric”通知可以正常显示。

预计该应用会在收到来电时向用户显示通知。

常规的烤面包很好看:

Regular Toast

但是,如果我在scenario="incomingCall"上添加<toast>,则会弄乱UI。

Toast as incomingCall

我在任何地方都找不到关于此行为的任何适当文档。我什至尝试使用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>
node.js notifications electron toast windows-10-desktop
1个回答
0
投票

根据@Richard Zhang提供的建议,我在Notifications Visualizer中试用了该模板。

© www.soinside.com 2019 - 2024. All rights reserved.