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

Office Button Help

1 Answer 72 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Matt
Top achievements
Rank 1
Matt asked on 08 Sep 2007, 08:15 PM
Hi everybody!!!

I have added the Options & exit buttons to the Office Button for Runtime

BUT

How do you make the Options and Exit buttons actually show the Options dialog or exit the application?

Thanks, Matt

1 Answer, 1 is accepted

Sort by
0
Dimitar Kapitanov
Telerik team
answered on 11 Sep 2007, 09:47 AM
Hi Matt,
Using the RadRibbonBar API you can use code similar to the one in the snippet below:

        public Form1()  
        {  
            InitializeComponent();  
 
            this.radComboBox1.TextBoxElement.Margin = new Padding(0, 4, 0, 0);  
 
            this.radRibbonBar1.RibbonBarElement.TabStripElement.SelectedTab =  
                this.radRibbonBar1.RibbonBarElement.TabStripElement.Items[0];  
 
            this.radRibbonBar1.RibbonBarElement.ExitButton.Click += new EventHandler(ExitButton_Click);  
            this.radRibbonBar1.RibbonBarElement.OptionsButton.Click += new EventHandler(OptionsButton_Click);  
        }  
 
        void OptionsButton_Click(object sender, EventArgs e)  
        {  
            //MessageBox.Show("options");  
            Form temp = new Telerik.Examples.WinControls.RibbonBar.FirstLook.Form2();  
            temp.Show();  
        }  
 
        void ExitButton_Click(object sender, EventArgs e)  
        {  
            Application.Exit();  
        } 

Please tell us whether this was your case and our code helped.

Regards,
Dimitar Kapitanov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
RibbonBar
Asked by
Matt
Top achievements
Rank 1
Answers by
Dimitar Kapitanov
Telerik team
Share this question
or