Hello.
The following code does not work:
because the addMember on toolStrip creates a new component of toolstripseparator, it does not add the one I passed. By this I am unable to remove separators from toolbar. (Checked on debug and the added one has always id+1 than the one I am passing as argument)
The other components seem to work without problems
The following code does not work:
Code:
ToolStripSeparator separator = new ToolStripSeparator(); toolStrip.addMember(separator); toolStrip.removeMember(separator);
The other components seem to work without problems
Comment