我的应用看起来像这样:
SectionHeader
SectionHeader
内容的
SectionHeader
内容的
SectionHeader
是一个用户控件,具有两个依赖项属性= Title和Apps。
标题不会更改,但应用程序需要绑定到主窗口视图模型的Apps属性。只有三个部分标题中的两个标题才需要Apps属性。
<c:SectionHeader DockPanel.Dock="Top" x:Name="SectionResources" Title="RESOURCES"
Apps="{Binding Path=Apps}" />
这就是目前的情况。问题是应用程序没有出现。
在SectionHeader
中,DataContext设置为自身,如下所示,允许显示标题。
DataContext="{Binding RelativeSource={RelativeSource Self}}"
Apps是UserControl中ItemsControl
的ItemsSource:
<ItemsControl
ItemsSource="{Binding Apps}">
所以我的问题是:
编辑:
忘记提及Apps是AppsItems的ObservableCollection。
这就是我的DP的样子:
public static readonly DependencyProperty AppsProperty = DependencyProperty.Register("Apps",
typeof (ObservableCollection<AppsItem>), typeof (SectionHeader),
new PropertyMetadata(null, OnAppsPropertyChanged));
private static void OnAppsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
Console.WriteLine("Hello!!!");
var sectionHeader = d as SectionHeader;
var value = e.NewValue as ObservableCollection<AppsItem>;
sectionHeader.Apps = value;
}
答案 0 :(得分:21)
为您的usecontrol命名并尝试像这样绑定
ItemsSource="{Binding Apps,ElementName=root}"
和root是您的usercontrol的名称
<UserControl x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="350" Width="525"
x:Name="root">
它是具有Apps属性
的用户控件的元素绑定答案 1 :(得分:10)
尝试从您的描述中重新编写此内容并遇到类似的问题后,我发现我能使其工作的唯一方法是不设置UserControl的DataContext,而是使用ElementBinding:
<UserControl x:Class="WpfApplication2.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
x:Name="thisUC"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Border Background="Red" Padding="10">
<ListBox x:Name="ucList" ItemsSource="{Binding ElementName=thisUC, Path=UCApps}"/>
</Border>
</Grid>
</UserControl>
这个UC的实施非常简单:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Collections.ObjectModel;
using System.Collections;
namespace WpfApplication2
{
/// <summary>
/// Interaction logic for UserControl1.xaml
/// </summary>
public partial class UserControl1 : UserControl
{
public IEnumerable UCApps
{
get { return (IEnumerable)GetValue(UCAppsProperty); }
set { SetValue(UCAppsProperty, value); }
}
// Using a DependencyProperty as the backing store for Apps. This enables animation, styling, binding, etc...
public static readonly DependencyProperty UCAppsProperty =
DependencyProperty.Register("UCApps", typeof(IEnumerable), typeof(UserControl1), new UIPropertyMetadata(null));
public UserControl1()
{
InitializeComponent();
}
}
}
调用它的XAML就是:
<Grid >
<my:UserControl1 x:Name="ucName" UCApps="{Binding Path=Apps}"/>
</Grid>
(我将您的Usercontrol中Apps
的名称更改为UCApps
,以便我可以看到发生了什么 - 太多同名的属性令人困惑!)
答案 2 :(得分:3)
Apps="{Binding Path=Apps}"
将应用绑定到自身。
尝试以下
1)您的ViewModel应该是Control的DataContext,然后您可以使用以下
Apps="{Binding DataContext.Apps}"
此外,您可以使用Snoop实用程序实时查找绑定问题
答案 3 :(得分:1)
你试过吗
Apps="{Binding Apps}"
而不是
Apps="{Binding Path=Apps}"
在您的顶级控件中?
此外,运行应用程序时,VS输出窗口中是否出现任何绑定错误?