K
Klaudiusz Bryja
Hi,
Have Control.FromHandle method equivalent in CF? Do you know how to do
it? Or meybe you know how to pass form as reference to external class
in that way:
class myForm : Form
{
....
myMethod(ref this); // I call this method in my form class and this
method change my form.
....
}
I can do this:
myForm f = new myForm()
....
myMethod(ref f);
but I want to do this in myForm class - is it possible?
Best regards
Klaudiusz
Have Control.FromHandle method equivalent in CF? Do you know how to do
it? Or meybe you know how to pass form as reference to external class
in that way:
class myForm : Form
{
....
myMethod(ref this); // I call this method in my form class and this
method change my form.
....
}
I can do this:
myForm f = new myForm()
....
myMethod(ref f);
but I want to do this in myForm class - is it possible?
Best regards
Klaudiusz