6 Answers, 1 is accepted
0

Richard Slade
Top achievements
Rank 2
answered on 02 Nov 2010, 04:42 PM
Hi,
Im fairly sure that the buttons cannot be right aligned, but you could always add a margin to the right most button to create the desired space. E.g.
Hope that helps
Richard
Im fairly sure that the buttons cannot be right aligned, but you could always add a margin to the right most button to create the desired space. E.g.
Me
.RadButtonElementExit.Margin.Left = value
Hope that helps
Richard
0

Richard Slade
Top achievements
Rank 2
answered on 02 Nov 2010, 04:44 PM
Note, that there is also a new control that will replace this one soon called RadCommandBar.
You can find out more about the new release at this link
Richard
You can find out more about the new release at this link
Richard
0
Indeed, Hans, as Richards mentions, we have been working on a new control - RadCommandBar - that will replace the existing RadToolstrip.
Peter
the Telerik team
The new control will provide this feature (which currently is not support by RadToolstrip.) and will also provide Visual Style Builder support, auto-collapse, and much better design-time support.
Hope this helps.
Greetings,Peter
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0

Francisco
Top achievements
Rank 1
answered on 24 Mar 2016, 03:50 PM
Hello,
I am trying to accomplish the right alignment of a button like it was mentioned on this post using the CommandBarButton but I can't find the setting to do that.
I am using Telerik version 2015.2.728.40
Thanks
Francisco
0
Hello Francisco,
Thank you for writing.
In order to achieve your requirement with right aligned CommandBarButton, please, have a look at the following code snippet:
I hope this information helps. Should you have further questions I would be glad to help.
Regards,
Dess
Telerik
Thank you for writing.
In order to achieve your requirement with right aligned CommandBarButton, please, have a look at the following code snippet:
public
Form1()
{
InitializeComponent();
this
.commandBarStripElement1.StretchHorizontally =
true
;
this
.commandBarButton1.StretchHorizontally =
true
;
this
.commandBarButton1.Alignment = ContentAlignment.MiddleRight;
this
.commandBarButton1.MaxSize =
new
Size(120, 0);
}
I hope this information helps. Should you have further questions I would be glad to help.
Dess
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.
0

Francisco
Top achievements
Rank 1
answered on 25 Mar 2016, 04:37 PM
Hello Dess,
This works!
Thanks
- Francisco