G
Guest
I am extending a listbox and added an int property like this:
public class WcgListBox : System.Windows.Forms.ListBox
{
private int _imageIndex = 0;
//Get/Set the ImageIndex for this ListBox.
public int ImageIndex
{
get { return _imageIndex; }
set { _imageIndex = value; }
}
public class WcgListBox : System.Windows.Forms.ListBox
{
private int _imageIndex = 0;
//Get/Set the ImageIndex for this ListBox.
public int ImageIndex
{
get { return _imageIndex; }
set { _imageIndex = value; }
}