Regarding Visual C# MenuItem: Where does the NullReference come from?
- by Thomas
Hi All.
I have a problem creating MenuItems for a TreeView dynamically: here is the (simplified)code i'm using.
public class CTM : TreeNode, IComparable, IComparable<CTM>
{
public CTM(CTMProvider provider)
{
this.provider = provider;
this.manager = provider.manager;
this.IEEEAddress = provider.IEEEAddress;
…