G
Guest
Hi,
We are using UIP 2.0 and we encountered a problem when trying to inherit
from a form that inherits from UIProcess.WindowsFormView. Our base form have
an onLoad event handler that call its controller:
private MyController myController
{
get
{
return (MyController)this.Controller;
}
}
private void Form1_Load(object sender, System.EventArgs e)
{
this.myController.DoSomething()
}
The problem is that the inherited from will not open in the designer as long
as we have this call to the controller in our load event.
Any ideas?
Thanks,
Gwenda
We are using UIP 2.0 and we encountered a problem when trying to inherit
from a form that inherits from UIProcess.WindowsFormView. Our base form have
an onLoad event handler that call its controller:
private MyController myController
{
get
{
return (MyController)this.Controller;
}
}
private void Form1_Load(object sender, System.EventArgs e)
{
this.myController.DoSomething()
}
The problem is that the inherited from will not open in the designer as long
as we have this call to the controller in our load event.
Any ideas?
Thanks,
Gwenda