Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚开始尝试使用表格布局面板来保持井井有条。我在单元格中添加了一个带有一些文本的标签控件。以后如何将此文本恢复到字符串变量中?甚至修改单元格中标签中的文本?
添加控件时,只需在表单中存储对它的引用。
将此添加到主表单主体(不在方法内):
Label myLabel;
在添加标签的代码中:
myLabel = new Label(); myLabel.Text = "Some Text"; // Pseudo-code myPanel.Cells.Add(myLabel);
然后,只需在表单代码中的任何位置访问 myLabel 即可。