如何在Bot自适应卡中更改选择集的文本字体大小

时间:2019-03-29 06:30:25

标签: c# botframework adaptive-cards

我们的机器人中有一个自适应卡,具有两个不同的列集-第一个列集为用户提供选择选项,第二个列集供用户选择(如果他对选择选项不感兴趣)。

问题在于调整第二个列集选择集中的文本的字体大小。在此选择集中,我可以使用任何属性来调整文本的大小吗?

new ColumnSet()
{
    Columns = new List<Column>()
    {
        new Column()
        {
            Items = new List<CardElement>()
            {
                new ChoiceSet()
                {
                    Id = "FeedbackOptions",
                    Choices = FeedbackChoice,
                    Separation= SeparationStyle.Default,
                    IsMultiSelect =true,
                    Type ="Input.ChoiceSet",                                           
                    Style = ChoiceInputStyle.Expanded
                }
            }
        }
    }
}

1 个答案:

答案 0 :(得分:1)

根据模式探索herehere,没有可用于配置字体大小的属性。