September 28, 2010
To customize appearance of Application Button in any style after Office 2007 (like 2013 etc.) you need to modify the application button color table on Office2007ColorTable like so: c#: Office2007ColorTable table = ((Office2007Renderer)GlobalManager.Renderer).ColorTable; Office2007ButtonItemColorTable defaultTable =table.ApplicationButtonColors[0]; defaultTable.Default.Background=new LinearGradientColorTable(Color.Red); VB: Dim table As Office2007ColorTable = DirectCast(GlobalManager.Renderer, Office2007Renderer).ColorTable Dim defaultTable As Office2007ButtonItemColorTable = table.ApplicationButtonColors(0) defaultTable.[Default].Background = New […]