与按钮的Xamarin水平的看法

时间:2017-04-20 15:15:42

标签: xamarin xamarin.ios xamarin.android xamarin.forms

如何准备如图所示的元素? 我需要5个按钮才能在那里,所以我可以刷过它们,但只有3个它们一直可见。我需要这个以xamarin形式在android和ios上工作。

enter image description here

1 个答案:

答案 0 :(得分:3)

尝试添加ScrollView并将其方向设置为水平

ScrollView = new ScrollView
{
    Orientation = ScrollOrientation.Horizontal
};

//ScrollView.Scrolled += ScrollView_Scrolled;

ItemsStackLayout = new StackLayout
{
    Orientation = StackOrientation.Horizontal,
    Padding = new Thickness(0),
    Spacing = 0,
    HorizontalOptions = LayoutOptions.FillAndExpand
};

ScrollView.Content = ItemsStackLayout;

您可以在视图宽度的1/3范围内设置元素的宽度

仅供参考我在我的应用程序中使用相同的内容 I use the same in my App