I set the background color of text box programmatically :
ColorBrush m_textBoxBackground = ColorBrush(Windows::UI::Colors::LightGray());
But now I have two themes Dark and Light. So I need to set the initial color from the theme.
How can I do it in c++ winrt? Any suggestion?