I have implemented a converter to convert Int32 to String to be able to binding a property to a textBox.
I implement this converter in the namespace MyApp.Converters and
Three fixes to make here:
xmlns:converter="clr-namesapce:MyApp.Converters,aseembly=MyApp"
xmlns:converter="clr-namespace:MyApp.Converters,assembly=MyApp"
xmlns:converter="clr-namespace:MyApp.Converters;assembly=MyApp"
From the the documentation:
Note that the character separating the clr-namespace token from its value is a colon (:) whereas the character separating the assembly token from its value is an equals sign (=). The character to use between these two tokens is a semicolon. Also, do not include any whitespace anywhere in the declaration.