在 C++ 中设置控件的颜色,Windows Store Metro App

Set the color of a control in C++, Windows Store Metro App

我正在制作 Windows Store Metro 应用程序,但遇到了一些问题..

我想在 C++ 中设置控件的颜色,但我不知道该怎么做..

我现在有以下代码:

txt1->背景 = ?

我有解决办法,首先制作一个画笔对象并设置颜色并将该颜色分配给您的控件背景。我使用了以下内容:

SolidColorBrush^ myBrush = ref new SolidColorBrush(Windows::UI::Colors::Red);
TextBox^ txtID = ref new TextBox();
txtID->Background = myBrush;

Link 我的问题: