我创建了一个图表控件的扩展,并声明了以下属性:
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'
我应该改变什么才能使它起作用?