无法在三个GroupBox上方显示DataGridView。
以下是设计器视图中界面的屏幕截图:
正如您所看到的,虽然GroupBoxes不可见,但DatagridView也不可见。
但是,如果我将DataGridView移动到窗口的底部,它会显示:
我尝试了很多方法来显示DatagridView:
resultsDatagridView.Parent.Controls.SetChildIndex(resultsDatagridView, 0);
(我只提到一个GroupBox,我为所有3个人做了同样的事情)
tab72Box.Visible = false;
resultsDatagridView.Visible = true;
tab72Box.SendToBack();
resultsDatagridView.BringToFront();
tab72Box.Hide();
resultsDatagridView.Show();
我也试过设置GroupBoxes'启用属性为false,但仍然没有运气。
有人能为我解释一下吗?或者可能有更好的方法来更改同一窗口中的界面。将GroupBoxes显示在另一个窗口中并不是一个真正的选择。
提前致谢。