The name "DockingManager" does not exist in the namespace http://schemas.xceed.com/wpf/xaml/avalondock

In a C # WPF project, I added Xceed.Wpf.AvalonDock to links. In the xaml file I have

xmlns:xcad="http://schemas.xceed.com/wpf/xaml/avalondock"
...
<xcad:DockingManager x:Name="DockMangager" Grid.Column="0" Grid.Row="1">
</xcad:DockingManager>

      

Can anyone please help? Thank!

+3


source to share


3 answers


This is a DLL security issue when downloading from the internet.

  • Go to the file Xceed.Wpf.AvalonDock.dll

    in Windows Explorer.
  • Open "Properties"
  • At the bottom of the dialog, there is a warning under the Security section
  • Click "Unblock"
  • Rebuild the project


You can also read the following:
http://www.kodyaz.com/visual-studio/unblock-assembly-file-in-visual-studio-2012.aspx

+4


source


It just happened to me. The mine was not blocked. My links had a yellow warning. I just added the Xceed DLL again, rebuilt and everything is fine.



0


source


Add the project reference again and the error goes away. it is always good after adding links to clean up recent ones to make sure unmanaged links are not removed.

0


source







All Articles