是否可以在Microsoft bot框架中的Hero卡按钮上使用自定义css样式表。
这是我的代码
string ImagePath = "file:\\" + HttpContext.Current.Request.MapPath("\\Images\\Like-icon_resize.png");
string strStyle = "<style type=\"text/css\" rel=\"stylesheet\">" +
@"{
color:Red;
}
</style>";
List<CardAction> cardButtons = new List<CardAction>();
CardAction button = new CardAction()
{
Value = "like",
Type = ActionTypes.PostBack,
Image = strlike,
Title = strStyle
};
cardButtons.Add(plButton);
HeroCard hero = new HeroCard()
{
Text= "I'm a hero card",
Buttons = cardButtons
};
答案 0 :(得分:0)
据我所知,bot框架不支持HTML \ CSS,因为它需要支持多个通道,而大多数通道都不提供HTML支持。
您只能使用框架提供给您的控件(如图片)