我正在尝试将项目列表绑定到TabControl。这些物品看起来像:

class SciEditor
{
    private Scintilla editor = null;
    public System.Windows.Forms.Control Editor
    {
        get { return editor; }
    }

    private string path = null;
    public string ShortName
    {
        get
        {
            return null == path ? "New Script" : Path.GetFileNameWithoutExtension(path);
        }
    }
    ....

在我的主窗口中,这个列表被称为“allscripts”。这是xaml:
<TabControl Grid.Row="0" Grid.Column="0" Name="tabControl1">
            <TabControl.ItemTemplate>
                <DataTemplate>
                    <TextBlock>
                        <TextBlock Text="{Binding ShortName}"/>
                    </TextBlock>
                </DataTemplate>
            </TabControl.ItemTemplate>
            <TabControl.ContentTemplate>
                <DataTemplate>
                    <WindowsFormsHost Child="{Binding Editor}" />
                </DataTemplate>
            </TabControl.ContentTemplate>
</TabControl>

问题是我不能在windowsformshost中设置“child”,因为
无法对“windowsformshost”类型的“child”属性设置“binding”。只能对DependencyObject的DependencyProperty设置“绑定”。
我怎样才能把窗台放在最前面的孩子?
编辑:忘了说,在主窗口构造函数中我有:
tabControl1.ItemsSource = allScripts;

最佳答案

将内容模板更改为

<TabControl.ContentTemplate>
     <DataTemplate>
          <ContentControl Content="{Binding Editor}" />
     </DataTemplate>
</TabControl.ContentTemplate>

并将代码的Editor属性更改为
public WindowsFormsHost Editor
{
    get { return new WindowsFormsHost(){Child=editor}; }
}

10-06 12:03