M
Mike Oliszewski
I want to take the ListView and enhance it and then make it available as a
drop in GUI Control for Visual Studio with all the easy configuration of
properties that are normally available. Here is my test control which works
as expected if I manually add it to a form. How do I get it in the ToolBox
such that I can drop it onto a form ?
namespace Test
{
public class ExListView : System.Windows.Forms.ListView
{
public ExListView()
{
this.BackColor = Color.Red;
}
}
}
drop in GUI Control for Visual Studio with all the easy configuration of
properties that are normally available. Here is my test control which works
as expected if I manually add it to a form. How do I get it in the ToolBox
such that I can drop it onto a form ?
namespace Test
{
public class ExListView : System.Windows.Forms.ListView
{
public ExListView()
{
this.BackColor = Color.Red;
}
}
}