private void Form1_Load(object sender, EventArgs e)
{
fn(this.Handle);
}
public void fn(IntPtr hanle)
{
//怎么样同 handle 来调用其他属性和函数?
}
解决方案
20
本程序别的窗口,application.openforms
private void Form1_Load(object sender, EventArgs e)
{
fn(this.Handle);
}
public void fn(IntPtr hanle)
{
//怎么样同 handle 来调用其他属性和函数?
}
20