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

时间:2015-10-05 12:58:57

标签: c++ windows colors microsoft-metro

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

我想在C ++中设置控件的颜色,但我无法弄清楚如何操作..

我现在有以下代码:

txt1->背景=?

1 个答案:

答案 0 :(得分:0)

我有解决方案,首先制作画笔对象并设置颜色并将该颜色指定给控件背景。我使用了以下内容:

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

链接到我的问题:How to set a background color of a control in windows 8 store application