gpt4 book ai didi

c# - 将 List[] 读入动态标签

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

我在尝试从 List<string[]> 中读取数据时遇到问题变成一个动态标签。

代码如下:

private void CuentasDeUsuarioForm_Load(object sender, EventArgs e)
{
List <string> [] cuentas = db.Select("SELECT * FROM cuentas_de_usuario");
foreach(List<string> acc in cuentas)
{
for (int i = 0; i < acc.Count; i++)
{
Label nuevoLabelCuenta = new Label { Text = acc[i] };
}
}
}

谁知道我哪里做错了?我没有收到任何语法或编译错误,但它只是在表单中没有显示任何内容。

最佳答案

this.Controls.Add(nuevoLabelCuenta);

(在内部 for 循环中)

关于c# - 将 List<string>[] 读入动态标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8711738/

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