按下按钮后,我想将面板的颜色更改为绿色:
ErrorDetectorPanel->Brush->Color = clLime;
不起作用。
ErrorDetectorPanel->Color = clLime;
ErrorDetectorPanel->Refresh();
不起作用。
这个上瘾:
ErrorDetectorPanel->ParentColor = false;
ErrorDetectorPanel->Refresh();
它仍然不起作用。
以这种方式尝试:
HBRUSH brush = CreateSolidBrush(RGB(0, 255, 0));
SetWindowLong(ErrorDetectorPanel->Handle,WM_ERASEBKGND, 0);
SetWindowLong(ErrorDetectorPanel->Handle,GCLP_HBRBACKGROUND, (LONG)brush);
TForm透明度是错误的 按下按钮后的结果相同。
我该怎么做?
答案 0 :(得分:2)
设置TPanel.Color
属性是正确的解决方案(它会自动将ParentColor
设置为false),但是您必须在TPanel
(或整个程序)上禁用主题/样式一个整体)以使用自定义着色。主题/样式控件从活动主题/样式中获取颜色。
答案 1 :(得分:0)
我使用
TPanel *tp[]={Panel454,Panel455,Panel456};
for(int i=sizeof(tp)/sizeof(tp[0]);--i>=0;){
tp[i]->ParentBackground=false;
tp[i]->StyleElements = TStyleElements(); // disable all
// tp[i]->CleanupInstance();
tp[i]->Color=clSkyBlue;
}
如果使用了主题/样式控件。