views:

73

answers:

1

I've been needing to use a numeric up-down control for my WPF app. I read a similar question posted here and tried using the one available here > http://bot.codeplex.com/.

I added the references and referenced it in my XAML window

xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"

and did this.

<lib:NumericUpDown Name="year"></lib:NumericUpDown>

and keep getting the error: 'nud' is an undeclared namepsace.

I'm very new to WPF so any help would be appreciated.

A: 

You didn't mention 'nud' in your code. Could you provide more details about the error?

Jérémie Bertrand
Well, this is pretty much all i've got. I get an error over the XAML where i've added the control that says 'nud is an undeclared namepsace'. And when i try to debug the project i get the same error message with the title 'XamlParseException occurred' from InitializeComponent();
smkngspcmn
And there's no 'nud' that i'm aware of. Did a search for it within the project and got nothing.
smkngspcmn