A
Alberto
In a user control I have this constructors:
public Nodo()
{
InitializeComponent();
}
public Nodo(string Texto)
{
InitializeComponent();
this.Text = Texto;
}
And in a class declared as public Element: Nodo I have this
constructors:
public Element()
{
InitializeComponent();
}
public Elemento(string Texto): base(Texto)
{
InitializeComponent();
}
When I try to see design of de Element class, VS says that can't find a
constructor in the base class (Nodo).
Does anybody know why? Thank you
public Nodo()
{
InitializeComponent();
}
public Nodo(string Texto)
{
InitializeComponent();
this.Text = Texto;
}
And in a class declared as public Element: Nodo I have this
constructors:
public Element()
{
InitializeComponent();
}
public Elemento(string Texto): base(Texto)
{
InitializeComponent();
}
When I try to see design of de Element class, VS says that can't find a
constructor in the base class (Nodo).
Does anybody know why? Thank you