Add namespace in XAML

0

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?

    
asked by Edulon 12.10.2018 в 18:11
source

0 answers