我正在創建一個包含ContentPresenter的UserControl。我使用Datagrid將contentPresenter填充到窗口中,將itemsSource綁定到列表,但不起作用。在ContentPersenter中綁定ItemsSource Datagrid
我的Datagrid是空的。但是當我將DataGrid移出UserControl時,我得到了Inside數據。
我的用戶 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();
}
}
感謝
下載snoopwpf.codeplex.com。您可以使用此工具在應用程序運行時檢查UI,並發現綁定錯誤。 – 2014-10-16 19:13:27
我在電腦上工作,我不是管理員,我不能安裝程序... – Northik 2014-10-16 19:36:38