I have a base class
internal partial class View<T> : UserControl
where T : class
{
protected T t;
}
and I want to get the child from the view
internal partial class ViewChild<T> : View<T>
where T : class
{
}
It works fine, but I cannot edit ViewChild in VS constructor. I know that the problem is the base base class. However, I do not understand how I can avoid this in this case. Is there any way to fix this?
source
share