gpt4 book ai didi

c# - tablelayoutpanel 内的 tablelayoutpanel 处置

转载 作者:太空宇宙 更新时间:2023-11-03 12:52:40 25 4
gpt4 key购买 nike

我有一个名为 tlpMaster 的 tableLayoutPanel。它有 4 列和 8 行。在 3 列和每一行中,它都有另一个 tableLayoutPanel。所以这就是 3 个内部的。在那些里面我有我需要能够处理的复选框。这是我到目前为止得到的,但它似乎是在处理 tableLayoutPanels 而不是复选框。

for (int i = 0; i < 8; i++)
{
for (int j = 1; j < 4; j++)
{
//loop throught the table layout panels and dispose
Control tlpTemp = tlpMaster.GetControlFromPosition(j, i);
while (tlpTemp.Controls.Count > 0)
{
tlpTemp.Controls[0].Dispose();
}
}
}

我在这里做错了什么?

最佳答案

想通了

for (int i = 0; i < 8; i++)
{
for (int j = 1; j < 4; j++)
{
//loop throught the table layout panels and dispose
Control tlpTemp = tlpMaster.GetControlFromPosition(j, i);
foreach(Control ctrl in tlpTemp.Controls)
{
while (ctrl.Controls.Count > 0)
{
ctrl.Controls[0].Dispose();
}
}
}
}

关于c# - tablelayoutpanel 内的 tablelayoutpanel 处置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34996265/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com