原谅我的英语
好吧,我有一个 Form MDI Conteiner,然后我像这样打开一个子 Form MDI
frSeries Serie = new frSeries();
Serie.Opener = this;
Serie.MdiParent = this;
Serie.Show();
seriesToolStripMenuItem.Enabled = false;
在上面的代码中,我的子表单获得焦点,但是当我从这个新表单中的一个组合框中选择某些内容时,背景会闪烁
但是如果我像这样创建新表单
frSeries Serie = new frSeries();
Serie.Opener = this;
Serie.MdiParent = this.MdiParent; //<----- this line is the problem
Serie.Show();
seriesToolStripMenuItem.Enabled = false;
子表单上方的代码没有收到焦点,所以我必须单击子表单,当我从这个新表单中的一个组合框中选择某些内容时,背景不会闪烁
我不知道打开 MDI 表单的正确格式是什么