1
Я хочу сделать LabeledPieCharts в WPF (Bea's Blog) Я загрузил DemoProject, и он запускается. Если я хочу создать LabeledPieChart он терпит неудачу с этой ошибкой:PieChart с ярлыками
The Tag "LabeledPieChart.Series" isn't in XML-Namespace "clr-namespace:Controls;assembly=Controls". Line 65 Position 14.
Вот мой код:
<customControls:LabeledPieChart x:Name="labeledPieChart"
Title="Population of Puget Sound Cities"
Grid.Row="3"
Width="700"
Height="500"
BorderBrush="Gray">
<customControls:LabeledPieChart.Series>
<customControls:LabeledPieSeries x:Name="labeledPieSeries"
DependentValuePath="Population"
IndependentValuePath="Name"
IsSelectionEnabled="True"
ItemsSource="{Binding}"
LabelDisplayMode="Auto"
PieChartLabelItemTemplate="{StaticResource pieChartLabelDataTemplate}"
PieChartLabelStyle="{StaticResource pieChartLabelStyle}" />
</customControls:LabeledPieChart.Series>
</customControls:LabeledPieChart>
Спасибо за ваш ответ. Я нашел ошибку. В проекте были 2 "control.dll" -файлы, и они были разными. У одного из них нет собственности «Серии» –