从 tablelayoutpanel 中检索标签文本
我刚刚开始尝试使用表格布局面板来使事情井井有条。我已将带有一些文本的标签控件添加到单元格中。稍后如何将此文本返回到字符串变量中?或者甚至修改单元格标签中的文本?
i have just begun experimenting on using table layout panel to keep things organised. I have added a label control with some text into a cell. how do I get this text back into a string variable at a later time? or even modify the text in the label in the cell?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加控件时,只需在表单中存储对其的引用即可。
将其添加到主表单主体(不在方法内):
在添加标签的代码中:
然后,只需在表单代码中的任何位置访问 myLabel 即可。
When you add the control, just store a reference to it in the form.
Add this to the main form body (not inside a method):
in your code that adds the label:
Then later, just access myLabel anywhere in the form code.