I have a status bar with 2 panels to show the product name and date. I want the date to appear on the right hand side of the status bar whilst the product name on the left. How can I do this? Do I just set the InterPanelSpacing to 790 or something?
Hello,
Please let us know if you need any further assitance with this matter.
Hi,
What you do is put a panel in between the two and set it to spring so that it fills all of the available space.
UltraStatusPanel textPanel = this.ultraStatusBar1.Panels.Add(Infragistics.Win.UltraWinStatusBar.PanelStyle.Text); textPanel.Text = "Some Text"; UltraStatusPanel springPanel = this.ultraStatusBar1.Panels.Add(Infragistics.Win.UltraWinStatusBar.PanelStyle.Text); springPanel.SizingMode = PanelSizingMode.Spring; UltraStatusPanel datePanel = this.ultraStatusBar1.Panels.Add(Infragistics.Win.UltraWinStatusBar.PanelStyle.Date);