|
Hi all,
I would like to add the ZoomControl to my WPF-Project but I got a error.
My Project is based on .Net 3.5
The declaration of the namespace:
xmlns:zoom="clr-namespace:WPFExtensions.Controls;assembly=WPFExtensions"
Codepart:
<Grid>
<zoom:ZoomControl>
<graphsharp:GraphLayout x:Name="graphLayout"
Graph="{Binding GraphToVisualize, ElementName=root}"
LayoutAlgorithmType="Tree"
OverlapRemovalAlgorithmType="FSA"
HighlightAlgorithmType="Simple"/>
</zoom:ZoomControl>
</Grid>
Now I got the following error from VisualStudio 2010
Error 1 when setting the property "System.Windows.ResourceDictionary.DeferrableContent" was an
exception.
Can anyone help please?
|