gpt4 book ai didi

vb.net - 在运行时添加按钮

转载 作者:行者123 更新时间:2023-12-04 06:39:09 26 4
gpt4 key购买 nike

我想在我的表单上放置几个按钮。该数字在设计时未知。实际上,每个按钮将代表在组合框中输入的一个项目。因此,如果用户添加一个项目,则应通过代码添加表单上的按钮。
请指教怎么做?

谢谢
富尔坎

最佳答案

您可以通过简单地循环任意数字(在本例中来自组合框)并在将它们添加到表单之前创建所需数量的按钮来完成此操作。

For i As Integer = 0 To myComboBox.Items.Count - 1
Dim newButton = new Button()

// Add some properties, etc. to the button
newButton.Text = myComboBox.Items(i).ToString()

MyForm.Controls.Add(newButton)
Next

关于vb.net - 在运行时添加按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4483727/

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