访问列表视图项目

发布于 2024-10-15 05:33:48 字数 149 浏览 2 评论 0原文

如何访问面板内另一种形式的列表视图的项目。

列表视图在面板中......面板1面板

1在表单中............表单1

我有另一个表单...... ...Form2,我想从那里将​​项目输入到 Form 1 中的 Listview

How do I access the items of a listview which in a another form inside a panel.

The Listview is inside a Panel........Panel1

Panel1 is in a Form ..................Form 1

I have another form .........Form2, from where I want to input items to Listview in Form 1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

徒留西风 2024-10-22 05:33:49

您可以使用以下方法从 Form2 访问 Form1 列表视图项:

Form1.ListView1.Items(...)

从其他表单访问控件时要小心 - 您可能会意外地触发事件,从而产生令人困惑的错误。有时,将项目分配给全局变量或参数以便在其他形式中使用会更安全。

You can access the Form1 listview items from Form2 using this:

Form1.ListView1.Items(...)

Be careful accessing controls from other forms -- you can accidentally cause events to fire which can make confusing errors. Sometimes it's safer to assign the items to global variables or parameters for use in other forms.

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