gpt4 book ai didi

Xamarin Forms Stacklayout StackOrientation.Horizo​​ntal

转载 作者:行者123 更新时间:2023-12-02 18:06:45 25 4
gpt4 key购买 nike

当我为 stacklayout 设置 StackOrientation.Horizo​​ntal 并设置 5 个标签时,它会正确显示。

enter image description here

但是,当标签数量增加时,标签文本大小会减小,并且所有标签都会根据可用宽度对齐。

enter image description here

如何显示所有标签的全文并在标签计数超出时将标签移动到下一行?

最佳答案

改用WrapLayout:

    var layout = new WrapLayout {
Orientation = StackOrientation.Horizontal,
HorizontalOptions = LayoutOptions.Fill,
Padding = new Thickness (0, padding, 0, padding)
};
layout.Children.Add (item);

结果: enter image description here

关于Xamarin Forms Stacklayout StackOrientation.Horizo​​ntal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37878195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com