从 tablelayoutpanel 中检索标签文本

发布于 2024-12-20 03:13:37 字数 87 浏览 0 评论 0原文

我刚刚开始尝试使用表格布局面板来使事情井井有条。我已将带有一些文本的标签控件添加到单元格中。稍后如何将此文本返回到字符串变量中?或者甚至修改单元格标签中的文本?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花落人断肠 2024-12-27 03:13:37

添加控件时,只需在表单中存储对其的引用即可。

将其添加到主表单主体(不在方法内):

Label myLabel;

在添加标签的代码中:

myLabel = new Label();
myLabel.Text = "Some Text";
// Pseudo-code
myPanel.Cells.Add(myLabel);

然后,只需在表单代码中的任何位置访问 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):

Label myLabel;

in your code that adds the label:

myLabel = new Label();
myLabel.Text = "Some Text";
// Pseudo-code
myPanel.Cells.Add(myLabel);

Then later, just access myLabel anywhere in the form code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文