我有以下代码将LayoutAnchorable添加到LayoutAnchorablePane但我不知道如何将一个控件(如文本框)添加到LayoutAnchorable
InitializeComponent();
LayoutAnchorablePane anchorablePane = new LayoutAnchorablePane();
LayoutAnchorable layoutAnchorable = new LayoutAnchorable();
layoutAnchorable.Title = "Dock1";
anchorablePane.Children.Add(layoutAnchorable);
anchorablePaneGroup.Children.Add(anchorablePane);
我可以看到LayoutAnchorable没有Children属性,所以我不能使用相同的方法。
编辑:通过查看文档,可以通过
完成layoutAnchorable.Content = new TextBox();
答案 0 :(得分:1)
要定义LayoutAnchorable
的内容,请使用Content
属性:
查看文档:{{3}}