How to set a background color of a control in windows 8 store application
问题 I am designing an application and had to instantiate controls via code. The problem is that I am unable to change the background color. I tried to look all over the internet, but no succes. I have contacted the Microsoft support service, but no succes either. I read that you normally change a color by using System.Color or System.ColorHelper. Both are not accesible in the application. So how to solve the following problem: TextBox^ txtID = ref new TextBox(); txtID->Background = ?; 回答1: I have