AvalonDock以编程方式将控件添加到LayoutAnchorable

时间:2014-04-23 18:34:30

标签: c# wpf avalondock

我有以下代码将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();

1 个答案:

答案 0 :(得分:1)

要定义LayoutAnchorable的内容,请使用Content属性:

查看文档:{​​{3}}