Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
755
Change TextBox background color
posted

Hi all 

I am using the thememanager as follow:  

using Infragistics.Themes;
using Infragistics.Windows.Ribbon;

namespace SapQmWp
{
  /// <summary>
  ///   Interaction logic for MainWindow.xaml
  /// </summary>
  public partial class MainWindow : XamRibbonWindow
  {
    public MainWindow()
    {
      InitializeComponent();
      ThemeManager.ApplicationTheme = new Office2013Theme();
    }
  }
}

My question is, how can I change Textbox Background color with style? 

Thanks