在PowerShell中,借助XML,我正试图建立一个toast通知。我已经浏览了微软关于toast模式的文档,但没有找到答案(或者我不知道从哪里找(
是否可以删除单词Windows Powershell
或将其更改为其他单词?S
字母在图片中放大。有可能在那里以某种方式显示整个缩小的图片吗?图片的像素为83x15。
Toast通知图像。
我的XML:
[xml]$Toast = @"
<toast scenario="$Scenario">
<visual>
<binding template="ToastGeneric">
<image id="1" placement="appLogoOverride" src="$LogoImage"/>
<text >$AttributionText</text>
<text>$HeaderText</text>
<group>
<subgroup>
<text hint-style="title" hint-wrap="true" >$TitleText</text>
</subgroup>
</group>
<group>
<subgroup>
<text hint-style="body" hint-wrap="true" >$BodyText1</text>
</subgroup>
</group>
<group>
<subgroup>
<text hint-style="body" hint-wrap="true" >$BodyText2</text>
</subgroup>
</group>
</binding>
</visual>
<actions>
<action activationType="system" arguments="dismiss" content="$DismissButtonContent"/>
</actions>
</toast>
"@
至少图像很容易修复,只需将徽标编辑为83x83像素的正方形即可