winform, 如何得知目前 infoBindingSource 是否在新增狀態?
實際上infoBindingSource是沒有狀態的,您可以判斷當前筆是否為新增資料,如:
bool flag = (ibsMaster.Current as DataRowView).IsNew;