jfecardona
Member
This is my situation, I created a class which inherits a DataGridView(XDGView), and another Class (XDGRowColl) which inherits a DataGridViewRowCollection. I Created XDGRowColl because I wanted to override its property which is remove, removeAt and Clear. Now what I wanted to do is to assign XDGRowColl to XDGView.Rows:
Public Sub New()
MyBase.Rows = New XDGRowColl
InitializeComponent()
End Sub
But 'MyBase.Rows = New XDGRowColl' says MyBase.Rows is a ReadOnly
Is there any other way to use XDGRowColl as my Default Row in XDGView?
Thanks in advance
Public Sub New()
MyBase.Rows = New XDGRowColl
InitializeComponent()
End Sub
But 'MyBase.Rows = New XDGRowColl' says MyBase.Rows is a ReadOnly
Is there any other way to use XDGRowColl as my Default Row in XDGView?
Thanks in advance