I'm sorry, but there has to be an easier way to achieve this same goal than to deviate from the out of the box theme. If I do this, than every time we upgrade I lose the work I've done to make the theme my own. I simply want the telerik UI to be removed from the application button on the ribbon bar.
Figured it out. Use the following if your ribbon bar is called m_rb.
//
// Set text on main ribbon bar
//
m_rb.RibbonBarElement.ApplicationButtonElement.KeyTip =
"F";
m_rb.RibbonBarElement.ApplicationButtonElement.Text =
"File";
m_rb.RibbonBarElement.ApplicationButtonElement.ForeColor =
Color.White;
m_rb.RibbonBarElement.ApplicationButtonElement.DisplayStyle =
DisplayStyle.ImageAndText;
m_rb.RibbonBarElement.ApplicationButtonElement.TextImageRelation =
TextImageRelation.ImageBeforeText;
m_rb.RibbonBarElement.ApplicationButtonElement.Image = Properties.
Resources.Do_16;
m_rb.RibbonBarElement.ApplicationButtonElement.ActionButton.ButtonFillElement.BackgroundShape =
null;
m_rb.RibbonBarElement.ApplicationButtonElement.ActionButton.ButtonFillElement.BackColor =
Color.Gray;