绑定ContentPersenter中数据网格的项源

本文关键字:网格 数据网 ContentPersenter 数据 绑定 | 更新日期: 2023-09-27 18:26:57

我正在创建一个包含ContentPresenter的UserControl。我用Datagrid填充窗口中的contentPresenter,将itemsSource绑定到列表,但它不起作用。

我的数据网格为空。但当我将数据网格从UserControl中移出时,我得到了内部数据。

我的用户控制XAML:

<UserControl Name="Instance" ...>
    <Grid>
        <ScrollViewer>
            <ContentPresenter Content="{Binding Path=AdditionnalContent, ElementName=Instance}" />
        </ScrollViewer>
    </Grid>
</UserControl>

C#:

public Object AdditionnalContent
{
    get { return (object)GetValue(ContentProperty); }
    set { SetValue(ContentProperty, value); }
}
public static readonly DependencyProperty AdditionnalContentProperty = DependencyProperty.Register("AdditionnalContent", typeof(object), typeof(MyUserControl),
      new PropertyMetadata(null));

我的窗口

<Window Name="win" ...>
    <Grid>
        <my:MyUserControl>
            <my:MyUserControl.AdditionnalContent>
                <!-- Datagrid is empty -->
                <DataGrid ItemsSource="{Binding LIST, ElementName=win}" AutoGenerateColumns="True" />
            </my:MyUserControl.AdditionnalContent>
        </my:MyUserControl>
        <!-- Datagrid have content -->
        <DataGrid ItemsSource="{Binding LIST, ElementName=win}" AutoGenerateColumns="True" />
    </Grid>
</Window>

C#:

public partial class MainWindow : Window
{
    public List<Object> LIST
    {
        get;
        private set;
    }
    public MainWindow()
    {
        fillList();
        InitializeComponent();
    }
}

感谢

绑定ContentPersenter中数据网格的项源

您的绑定指向一个Window元素的属性,该元素不知道它是什么。它只知道的路径是Window 的属性

假设您的LIST在Window的DataContext内。然后,您必须明确地将其指向WindowDataContext

<DataGrid ItemsSource="{Binding Path=DataContext.LIST, ElementName=win}" AutoGenerateColumns="True" />

我用这个代码解决了我的问题

<Window Name="win" ...>
    <Grid>
        <my:MyUserControl>
            <my:MyUserControl.AdditionnalContent>
                <DataGrid ItemsSource="{Binding LIST, RelativeSource={RelativeSource AncestorType={x:Type Window}}}" />
            </my:MyUserControl.AdditionnalContent>
        </my:MyUserControl>
    </Grid>
</Window>

我现在不会解决这个问题,因为我想解释一下原因。我知道它会试图找到窗口控件的parent的parent,但它已经在窗口中声明了,所以为什么绑定看不到windoe控件的名字。

感谢