I have 4 continus ToolStripStatusLabel in statusStrip and their is a space between them, the requirement is like that we dont need any space between these 4 ToolStripStatusLabel in statusStrip.
Please tell me how can we remove space between them.. i have got an alternative to set all values in one statusStrip but as all values are coming from various sources so its a major change. so please provide me solution ( i am using c#.net – vs2005)
You can change the margin-property of the ToolStripStatusLabels, even to negative numbers:
For example, try ‘-2; 3; -2; 2’, this will make the items get closer together.
Watch out not to go too close, to avoid overlapping.
To clarify, what property I mean, some sample code (designer generated):