私はに非常に新しいC#
です。
bindinglist
のデータ ソースであるmy からオブジェクトを削除できる必要がありますdatagridview
。最後のアイテムを削除すると、次の例外が発生します。
System.NullReferenceException: Object reference not set to an instance of an object.
at System.Windows.Forms.DataGridViewRow.BuildInheritedRowStyle(Int32 rowIndex,
DataGridViewCellStyle inheritedRowStyle)
at System.Windows.Forms.DataGridViewRow.Paint(Graphics graphics, Rectangle clipBounds,
Rectangle rowBounds, Int32 rowIndex, DataGridViewElementStates rowState, Boolean isFirstDisplayedRow, Boolean isLastVisibleRow)
at System.Windows.Forms.DataGridView.PaintRows(Graphics g, Rectangle boundingRect,
Rectangle clipRect, Boolean singleHorizontalBorderAdded)
at System.Windows.Forms.DataGridView.PaintGrid(Graphics g, Rectangle gridBounds,
Rectangle clipRect, Boolean singleVerticalBorderAdded, Boolean singleHorizontalBorderAdded)
at System.Windows.Forms.DataGridView.OnPaint(PaintEventArgs e)
at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer, Boolean disposeEventArgs)
at System.Windows.Forms.Control.WmPaint(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.DataGridView.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
オブジェクトを削除するための私のコードは次のとおりです。
study は study オブジェクトのバインディングリストです。
private void removeComplete()
{
if (studies.Count == 0)
return;
// Create temp list of copleted studies
List<study> completedStudies = studies.Where(s => s.isComplete() == true).ToList();
if (studies.Count == 0)
{
// do nothing
}
else
{
// If I don't use this line, every row produces the same exception
studies.RaiseListChangedEvents = false;
foreach (study study in completedStudies)
{
try
{
studies.Remove(study);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
break;
}
// Turn it back on after turning it off above
studies.RaiseListChangedEvents = true;
// This is the point where it fails
studies.ResetBindings();
}
}
私が見る限り、datagridview はまだソースから削除されたばかりの行を追加しようとしているようです。これは私にとって本当に奇妙です。
助けてください!