【发布时间】:2015-09-23 14:04:54
【问题描述】:
基本上,我正在尝试动态地将布局添加到滚动视图的内容中。我做了一个示例代码,但它只能在第二次点击时工作,由于某种原因它不会呈现添加的第一个布局!!!我做错了吗?
public class PageExperiment
{
ScrollView _page;
public PageExperiment()
{
_page = new ScrollView { Orientation = ScrollOrientation.Vertical,
Content = new RelativeLayout { BackgroundColor = Color.White} };
var button = new Button { Text="Add Button"};
button.Clicked += OnButtonClicked;
((RelativeLayout)_page.Content).Children.Add(button,xConstraint:null);
}
public ScrollView getPage()
{
return _page;
}
void OnButtonClicked(object sender, EventArgs e)
{
var relative = AddLayout();
var content = (RelativeLayout)_page.Content;
var v = content.Children[content.Children.Count - 1];
Constraint xConstraint = Constraint.Constant(0);
Constraint yConstraint = Constraint.RelativeToView(v, (parent, sibling) => {
return sibling.Y + sibling.Height;
});
((RelativeLayout)_page.Content).Children.Add((View)relative, xConstraint, yConstraint);
}
public VisualElement AddLayout()
{
var root = new RelativeLayout();
root.BackgroundColor = Color.Red;
var a = new Label { Text = "Button Added!!!!", BackgroundColor = Color.Purple};
a.FontSize = 30;
root.Children.Add(a, xConstraint:null);
return root;
}
}
这里是主要的:
public class App : Application
{
public App()
{
var root = new PageExperiment();
MainPage = new ContentPage
{
Content = root.getPage()
};
}
}
【问题讨论】:
标签: c# scrollview xamarin.forms