在顶部数据网格视图
我有 4 个数据网格视图。 根据用户的选择,我会将它们放在前面。 我有一个按钮,使用顶部 datagridview 来计算某些内容。 我如何识别哪个 datagridview 位于顶部?
I have 4 datagridviews.
based on user's selection I'll bring on of them to front.
I have a button that use top datagridview for calculating something.
How can I recognize which datagridview is on top?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
.Visible = true;
或.Visible = false;
属性隐藏或显示当前网格,因此您可以通过检查来识别哪个网格位于顶部>.可见
Use
.Visible = true;
or.Visible = false;
Property to either hide or show your current grid, thus you can identify which one is on top by checking the.Visible
取一个全局变量。当您移动第一个数据网格时,将全局变量的值设置为“一”(或任何其他值,以便您可以识别这是第一个数据网格),并将第二个数据网格的值设置为“二”,就像其他数据网格一样。在根据变量值进行计算时,您可以执行适当的操作
take a global variable. when you move first datagrid then set value of global variable to 'one'(or any other so you can identify that this is first datagrid) and for second datagrid 'two' like for other datagrids also. While calculation based on the variable value you can do appropriate actions