I have a piece of code something like below. I'm using Microsoft Visual C# Express Edition. My problem is that I can't add columns to a DataGridView in design-time which is a member of another class. Here is my code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ClassLibrary1
{
public class Class1 : Panel
{
DataGridView mView;
public Class1()
{
mView = new DataGridView();
this.Controls.Add(mView);
}
public DataGridView View
{
get { return mView; }
set { mView = value; }
}
}
}
When I click the three dotted button to add new columns in properties window i got System.NullException in design-time. I couldn't post the screenshot because of my reputation.
Thanks for help!
I just a deeper look into your question. Unfortunatelly I was able to reproduce the described matter. After some research in DataGridView in usercontrols i thumbled over the following post.
It seems that there is no visual support for an inherited DataGridView - and - not for userControls using DataGridView, too. You may also have a look at this article
I tried using the following inherited DataGridView classes - but neither worked. I am sorry for not having a proper solution - but I hope this may be of any use for you.