0

我创建了一个图表控件的扩展,并声明了以下属性:

public ObservableCollection<DataPoint> ItemsSource { get; set; }

现在,当我尝试在绑定中使用它时

<chart:DataChart ItemsSource="{Bind MySource}"/>

我正进入(状态:

error MC3074: The tag 'Bind' does not exist in XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'

我应该改变什么才能使它起作用?

4

1 回答 1

3
  1. 你需要使用Binding,而不是Bind。(也许只是拼写错误。)
  2. 为了使用Bindingfor ItemsSource,它必须是一个依赖属性
于 2012-04-16T10:44:42.463 回答