在SfRotator中显示多个项目

时间:2016-08-22 06:54:52

标签: xamarin xamarin.forms syncfusion

我试图在Syncfusion SfRotator控件中显示表单。我曾尝试在旋转器内使用StackLayout,但它不会起作用。旋转器将被加载,但它没有任何显示。

var item = new SfRotatorItem();
item.ItemContent = new StackLayout
{
    Children =
    {
        new Label {Text = "f", HorizontalTextAlignment = TextAlignment.Center, TextColor = Color.White, },
        Entry,
        Btn,
        noteLbl,
    }
};
rotator.DataSource.Add(item);

ItemContent接受view,如果您可以帮助我,或者建议采用其他方法在每个页面中显示多个控件以创建渐进式表单,我将不胜感激。

0 个答案:

没有答案