gpt4 book ai didi

c# - 获取 bindingSource 的 CurrentRow 的实例

转载 作者:太空宇宙 更新时间:2023-11-03 15:42:28 24 4
gpt4 key购买 nike

我想获取 bindingSource 的 CurrentRow 实例并将其分配给私有(private)变量。

类似于:

MatDataSet.KorisnikRow currentRow;    
currentRow = (MatDataSet.KorisnikRow)((DataRowView)korisnikBindingSource.Current).Row;

当然,应该首先创建 currentRow 变量,否则会弹出 Object reference not set to an object 错误。但我不知道如何或知道任何解决方法,所以请帮忙。

抱歉技术语言不好。

最佳答案

您可以检查 BindingSource 是否不为 null。

    if (bindingSource.Current != null)
// your conversion

关于c# - 获取 bindingSource 的 CurrentRow 的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29695627/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com