I have created a class, which inherits from TextBox, I try to use in XAML with the consequent error;
However, the class is already in the root namespace of the project;
namespace PcS7
{
public class CajaTexto : TextBox
{
bool esValido;
}
}
What am I doing wrong?