我试图在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
,如果您可以帮助我,或者建议采用其他方法在每个页面中显示多个控件以创建渐进式表单,我将不胜感激。