c# - Control from WPFToolkit doesn't exist in namespace -
i added references wpftoolkit.dll , added .xaml file following line:
xmlns:toolkit="clr-namespace:microsoft.windows.controls;assembly=wpftoolkit"
and before following line:
xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit"
in both cases in line
<toolkit:numericupdown value="10" increment="1" maximum="10" minimum="0" />
i have error:
error 1 tag 'numericupdown' not exist in xml namespace 'http://schemas.microsoft.com/wpf/2008/toolkit'. line 20 position 18. c:\users\diament\documents\visual studio 2008\projects\mybasicflyffkeystroke\mybasicflyffkeystroke\window.xaml 20 18 mybasicflyffkeystroke
where problem? :(
i had exact same problem.
if skipped unblock step , unzipped, xaml preview window not load , vs keep giving me 'integerupdown component not exist in namespace http://schemas.xceed.com/wpf/xaml/toolkit' error, though auto-complete happily list components in namespace.
however if unblock zip file first, extract, reference dll in vs, works correctly.
tl;dr: follow installation instructions exactly, particularly unblocking zip file first.
Comments
Post a Comment