This is a migrated thread and some comments may be shown as answers.

Numeric Up Down in Ribbon

1 Answer 89 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Dave
Top achievements
Rank 1
Dave asked on 20 Nov 2009, 02:10 AM
Hello,

I was wondering how to insert a 'numeric up down' control into the ribbon?  I am using C# .NET 3.5.

Thanks,
David

1 Answer, 1 is accepted

Sort by
0
Accepted
Nikolay
Telerik team
answered on 26 Nov 2009, 05:22 PM
Hello Dave,

Currently, you can add a RadSpinElement to a RadRibbonBar group only programmatically:

RadSpinElement spin1 = new RadSpinElement();
spin1.MinSize = new Size(50, 0);
spin1.BackColor = Color.White;
this.radRibbonBarGroup1.Items.Add(spin1);

I hope this helps. If you have additional questions, feel free to contact me.

Greetings,
Nikolay
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
RibbonBar
Asked by
Dave
Top achievements
Rank 1
Answers by
Nikolay
Telerik team
Share this question
or