To move the elements to the right you can set the Spring property of the elements. For example, if you set this property to true to the first element, all elements afterward will be set to the right. However, if you set this property to the last element, it will be stretched to take all available space. The following code snippet demonstrates how to move all elements after the first one to the right.
privatevoidForm1_Load(object sender, EventArgs e)
{
RadLabelElement labelElement = new RadLabelElement();
labelElement.Text = "My LabelElement";
RadButtonElement buttonElement = new RadButtonElement();
buttonElement.Text = "My ButtonElement";
RadRepeatButtonElement repeatButtonElement = new RadRepeatButtonElement();
repeatButtonElement.Text = "My Repeat button";
CommandBarSeparator separator = new CommandBarSeparator();
RadProgressBarElement progressBarElement = new RadProgressBarElement();
progressBarElement.Text = "My Progress Bar";
radStatusStrip1.Items.AddRange(new RadItem[] { labelElement, buttonElement, repeatButtonElement, separator, progressBarElement });
// Setting the Spring of the first element to true.this.radStatusStrip1.SetSpring(labelElement, true) ;
}