我正在尝试在文本旁边显示一个带图标的CardAction。但是,该图标未显示,而文本却显示。
我已经在Emulator,Facebook和其他标准频道上尝试过。
var cardAction = new CardAction
{
Title = title,
DisplayText = displayText,
Text = text,
Value = value,
Type = actionType
};
if (actionType == "openUrl")
{
cardAction.Image = "http://vortex.accuweather.com/adc2004/mobile/bot/icons/32x32/external-link.png";
}
return cardAction;