我似乎找不到任何关于在 HeroCard 中制作可点击图像的文档或论坛答案。我希望能够单击图像并执行imBack()
与使用按钮相同的操作。
问问题
1111 次
2 回答
3
您可以Tap
使用HeroCard
.
在 C# 中发布一些示例代码:
using System;
using System.Threading.Tasks;
using Microsoft.Bot.Builder.Dialogs;
using Microsoft.Bot.Connector;
using System.Collections.Generic;
namespace Bot_Application2.Dialogs
{
[Serializable]
public class RootDialog : IDialog<object>
{
public async Task StartAsync(IDialogContext context)
{
context.Wait(ConversationStartedAsync);
}
public async Task ConversationStartedAsync(IDialogContext context, IAwaitable<IMessageActivity> argument)
{
IMessageActivity reply = context.MakeMessage();
HeroCard heroCard = new HeroCard()
{
Title = "I'm a hero card",
Images = new List<CardImage>
{
new CardImage(url: $"https://www.google.org/assets/static/images/logo_googledotorg-171e7482e5523603fc0eed236dd772d8.svg")
},
Tap = new CardAction()
{
Value = $"https://www.google.co.in/",
Type = "openUrl",
}
};
reply.Attachments = new List<Attachment>
{
heroCard.ToAttachment()
};
await context.PostAsync(reply);
}
}
}
于 2017-07-25T09:15:15.670 回答
0
这是不可能的HeroCard
。您可能想探索允许这样做的AdaptiveCards 。
于 2017-07-24T14:58:07.010 回答