第一个问题很简单 在该类的构造函数里让使用者传入使用对象就行了
当然如果要有很多 可以传入arraylist之类的吧 这是最笨的方法了
然后向窗口发消息就行了
第一个问题不知道
我是通过以下的代码获得和设置子窗口的属性:
Form f = new Form();
其中 groupBox2 、tb_send_msg都是f的控件的name
f.Text = "Talking with " + targetname+"...";
f.Controls["groupBox2"].ResumeLayout(false);
f.Controls["groupBox1"].ResumeLayout(false);
f.Controls["groupBox2"].PerformLayout();
f.ResumeLayout(false);
f.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.childrenform_FormClosing);
f.Controls["groupBox2"].Controls["tb_send_msg"].KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_send_msg_KeyDown);
f.Controls["groupBox2"].Controls["tb_send_msg"].TextChanged += new System.EventHandler(this.tb_send_msg_TextChanged);
childrenforms.Add(f);
f.Show();
TextBox tb = (TextBox)f.Controls["groupBox2"].Controls["tb_send_msg"];
tb.TabIndex = 0;