访问列表视图项目
如何访问面板内另一种形式的列表视图的项目。
列表视图在面板中......面板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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下方法从 Form2 访问 Form1 列表视图项:
从其他表单访问控件时要小心 - 您可能会意外地触发事件,从而产生令人困惑的错误。有时,将项目分配给全局变量或参数以便在其他形式中使用会更安全。
You can access the Form1 listview items from Form2 using this:
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.