I need to make pretty extensive changes to the styling of the AD controls, so I loaded generic.xaml and the Images folder into my app as a place to start. I added assembly references to the xmlns declarations in generic.xaml, but I'm having a compiler issue with the reference to Microsoft.Windows.Shell.
My declaration is:
xmlns:shell="clr-namespace:Microsoft.Windows.Shell;assembly=AvalonDock"
The error is:
"The type 'shell:WindowChrome' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built."
It does seem to find the namespace itself; it's available in Intellisense, but with no members.
I'm also getting the error
"'HwindHostInstance' TargetType does not match type of element 'LayoutAutoHideWindowControl'
but I think that might be a side-effect of the compiler not finding any classes inside Microsoft.Windows.Shell.
I don't even know where to start with this one. Can anybody point me in the right direction?
My declaration is:
xmlns:shell="clr-namespace:Microsoft.Windows.Shell;assembly=AvalonDock"
The error is:
"The type 'shell:WindowChrome' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built."
It does seem to find the namespace itself; it's available in Intellisense, but with no members.
I'm also getting the error
"'HwindHostInstance' TargetType does not match type of element 'LayoutAutoHideWindowControl'
but I think that might be a side-effect of the compiler not finding any classes inside Microsoft.Windows.Shell.
I don't even know where to start with this one. Can anybody point me in the right direction?