我创建了一个具有 RichtTextBox 的新 MDIChild:
Form myForm = new Form();
myForm.MdiParent = this;
RichTextBox rtb = new RichTextBox();
myForm.Controls.Add(rtb);
myForm.Show();
由于可能打开了其他一些没有 RTB 的 MDIChild,我想检查 ActiveChild 中是否有 RichtTextBox。我不知道该怎么做......在try-catch(?)中是这样的:
foreach (Control control in this.ActiveMdiChild.Controls)
{
// check if the control is a checkbox
// make the richttextbox as an object so I can do strange things with it ^^
}
你能帮帮我吗?
谢谢和干杯亚历克斯