Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > ToolBar > Toolbar Items On Right

Not answered Toolbar Items On Right

Feed from this thread
  • Scott avatar

    Posted on Aug 26, 2011 (permalink)

    I'm looking to have all my toolbar buttons on the right side of the toolbar.  I've searched the forum for how to accomplish this, but all I can find are posts from 2009 stating to use two toolbars side by side.  Each of those posts say that this feature is coming soon.

    Am I able to now position my buttons on the right side of my toolbar without needing two toolbars?  If so, how?

    Thanks,

    -Scott

    Reply

  • Petar Mladenov Petar Mladenov admin's avatar

    Posted on Aug 31, 2011 (permalink)

    Hi Scott,

     This is logged preciously as a feature request in our PITS system. You can vote for it here. Unfortunately, we cannot provide you an estimated time when this will be implemented in the RadToolBar.

    All the best,
    Petar Mladenov
    the Telerik team

    Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

    Reply

  • Marcelo avatar

    Posted on Sep 9, 2011 (permalink)

    There is a workAround...
    Try this:

        <Grid x:Name="LayoutRoot" Background="White" Height="30" SizeChanged="LayoutRoot_SizeChanged" >
            <telerik:RadToolBar HorizontalAlignment="Stretch" OverflowButtonVisibility="Collapsed">
            <Grid x:Name="teste">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="270"/>
                        <ColumnDefinition Width="130"/>
                        <ColumnDefinition Width="*"/>
                        <ColumnDefinition Width="100"/>
                        <ColumnDefinition Width="80"/>
                        <ColumnDefinition Width="41"/>
                    </Grid.ColumnDefinitions>
                 [........]
                </Grid>
        </telerik:RadToolBar>
    </Grid>

    and

    private void LayoutRoot_SizeChanged(object sender, SizeChangedEventArgs e)
    {
          teste.Width = e.NewSize.Width - 30;
    }
    Attached files

    Reply

  • Jorn Master avatar

    Posted on Oct 7, 2011 (permalink)

    No need for code-behind (just style/adjust the controls with margins to suit your needs):
    <Grid>
        <telerik:RadToolBar></telerik:RadToolBar>
        <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
            <Button/>
            <Button/>
            <Button/>
        </StackPanel>
    </Grid

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > ToolBar > Toolbar Items On Right
Related resources for "Toolbar Items On Right"

Silverlight ToolBar Features  |  Documentation  |  Demos  |  Telerik TV  |  Self-Paced Trainer  ]