We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Spring Property in Status Label of StatusStripEx is missing

Hi SyncFusion,
I am working around syncfusion and observed that the spring property for status label (Which is available in standard status label) is missing. Please do guide me in this regard, It may be that the property is there but i could not find it. or the same functionality is available with some other name.

Regards,
Maverick.


1 Reply

HK Hemaladha K Syncfusion Team September 8, 2008 10:12 AM UTC

Hi Maverick,

Thank you for your interest in Syncfusion Products.

StatusStripEx has two panes - notification pane (left) and control pane (right). ToolStripStatusLabel fills the control pane by default and hence Spring property does not have any effect on it. You can stretch the ToolStripStatusLabel to fill the StatusStrip using the below code after setting AutoSize of the label to false.

[C#]
private void Form1_SizeChanged(object sender, EventArgs e)
{
this.toolStripStatusLabel1.Width = this.statusStripEx1.Width - (statusStripEx1.SizeGripBounds.Width + 4);
}


Please refer to the below sample and let me know if this helps you.
http://websamples.syncfusion.com/samples/Tools.Windows/F76372/main.htm


Regards,
Hema


Loader.
Live Chat Icon For mobile
Up arrow icon