gpt4 book ai didi

c# - 在面板 winform 中放置标签

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

我在 winforms 应用程序中有一个面板,我想在其中以垂直对齐方式显示一些数据。我将从 XML 文档中获取该数据。我将像这样遍历 XML:

for (int i = 0; i < node.ChildNodes.Count; i++)
{
lbl = new Label();
lbl.Text = node.ChildNodes[i].Name + " = " + node.ChildNodes[i].InnerText;
panel1.Controls.Add(lbl);
}

最后我只能看到面板左上角显示的第一条记录,但是循环遍历 panel1.controls,我可以看到计数是 79,我只需要正确定位它们。

我怎样才能做到这一点?

最佳答案

你可以使用 FlowLayoutPanel而是设置它的 FlowDirection TopDown 的属性。

关于c# - 在面板 winform 中放置标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13961198/

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