Windows 10 14393のトーストの挙動、特に画像周りのメモ。
- <image placement=“inline” /> が1個
<toast> <visual> <binding template="ToastGeneric"> <text>Tortoise beats rabbit in epic race</text> <text>In a surprising turn of events, Rockstar Rabbit took a nasty crash, allowing Thomas the Tortoise to win the race.</text> <image placement="inline" src="https://unsplash.it/360/180?image=1043"/> <text placement="attribution">The Animal Times</text> </binding> </visual> </toast>
- <image placement=“inline” /> が複数個
<toast> <visual> <binding template="ToastGeneric"> <text>Tortoise beats rabbit in epic race</text> <text>In a surprising turn of events, Rockstar Rabbit took a nasty crash, allowing Thomas the Tortoise to win the race.</text> <image placement="inline" src="https://unsplash.it/360/180?image=1043"/> <image placement="inline" src="https://unsplash.it/360/180?image=1043"/> <image placement="inline" src="https://unsplash.it/360/180?image=1043"/> <text placement="attribution">The Animal Times</text> </binding> </visual> </toast>
- <image placement=“hero” /> が1個
<toast> <visual> <binding template="ToastGeneric"> <text>Tortoise beats rabbit in epic race</text> <text>In a surprising turn of events, Rockstar Rabbit took a nasty crash, allowing Thomas the Tortoise to win the race.</text> <image placement="hero" src="https://unsplash.it/360/180?image=1043"/> <text placement="attribution">The Animal Times</text> </binding> </visual> </toast>
- <image placement=“hero” /> が複数個
<toast> <visual> <binding template="ToastGeneric"> <text>Tortoise beats rabbit in epic race</text> <text>In a surprising turn of events, Rockstar Rabbit took a nasty crash, allowing Thomas the Tortoise to win the race.</text> <image placement="hero" src="https://unsplash.it/360/180?image=1043"/> <image placement="hero" src="https://unsplash.it/360/180?image=1043"/> <image placement="hero" src="https://unsplash.it/360/180?image=1043"/> <text placement="attribution">The Animal Times</text> </binding> </visual> </toast>
- <image placement=“inline” /> と <image placement=“hero” /> の組み合わせ
<toast> <visual> <binding template="ToastGeneric"> <text>Tortoise beats rabbit in epic race</text> <text>In a surprising turn of events, Rockstar Rabbit took a nasty crash, allowing Thomas the Tortoise to win the race.</text> <image placement="hero" src="https://unsplash.it/360/180?image=1043"/> <image placement="inline" src="https://unsplash.it/360/180?image=1043"/> <image placement="inline" src="https://unsplash.it/360/180?image=1043"/> <text placement="attribution">The Animal Times</text> </binding> </visual> </toast>