无法将图像添加到HeroCard中的按钮

时间:2018-08-29 16:45:27

标签: c# botframework

我正在尝试在HeroCard中的按钮上添加图像/图标,但是由于某些原因,它不起作用。 知道可能是什么问题吗?

var logo= @"https://upload.wikimedia.org/wikipedia/commons/8/89/Farm-Fresh_user_zorro.png";
var button= new CardAction("openUrl", value: "someUrl", image: logo);

var card = new HeroCard
{
    Title = "title",
    Subtitle = "some SubTitle",
    Text = "Some Text",
    Buttons = new List<CardAction>()
    {
        button
    }
};

1 个答案:

答案 0 :(得分:0)

  

试图在HeroCard中的按钮上添加图像/图标,但是由于某些原因它不起作用。

Bot Builder for .NET documentation中,我们可以找到:

  

URL图片将显示在按钮上,文本标签旁边。

Bot Builder for Node.js documentation中,我们可以找到:

  

用于按钮的图像包含在按钮标签旁边。并非所有渠道都支持。

但是根据我的经验和this github issue,似乎没有在任何渠道中实现它。