The WinForms StatusStrip control is an extension of frameworks status strip control displays various kind of status information which get displayed at the bottom of window. Support color schemes, context menu and etc.
It can hold controls like advanced track bar, progress bar, and status strip buttons.
Advanced WinForms status strip supports all three color schemes of Office 2007: silver, blue, and black.
Users can also apply custom colors to the advanced WinForms status strip by setting the Office color scheme to “Managed” and specifying the custom color through the ApplyManagedColors method.
Easily get started with the WinForms StatusStrip using a few simple lines of C# code example as demonstrated below. Also explore our WinForms StatusStrip Example that shows you how to render and configure the WinForms StatusStrip.
using Syncfusion.Windows.Forms.Tools;
using System.Windows.Forms;
namespace WinFormsApp1
{
public partial class Form1 : Form
{
private StatusStripEx statusStripEx1;
private ToolStripStatusLabel toolStripStatusLabel1;
public Form1()
{
InitializeComponent();
this.statusStripEx1 = new StatusStripEx();
this.toolStripStatusLabel1 = new ToolStripStatusLabel();
this.statusStripEx1.Items.AddRange(new ToolStripItem[] { this.toolStripStatusLabel1 });
this.Controls.Add(this.statusStripEx1);
this.statusStripEx1.Dock = DockStyleEx.Bottom;
}
}
}
You can find our WinForms StatusStrip demo on
GitHub location.
No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue, 5 or fewer developers, and 10 or fewer total employees.
A good place to start would be our comprehensive getting started documentation.
Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.