是这样的:
比如我在A窗体是这样的:
Send_SMS send = new Send_SMS(this);
send.Show();在B窗体也是这样的:
Send_SMS send = new Send_SMS(this);
send.Show();然后我在Send_SMS窗体如何判断传过来的是哪个窗体的实例呢?
求大家解答下,谢谢。WinForm