我正在使用启用了 VCL 样式的 Delphi,我想为我的表单更改 TSplitter 的颜色。我TSplitter.Paint
在插入器类中重写以绘制比默认 VCL 样式cBtnFace
颜色更深的颜色,但是在调整大小时表单上有明显的闪烁。有没有办法消除这种闪烁?
我已经尝试过这些方法来尝试减少闪烁,但都没有奏效:
禁用 VCL 样式 (
TSplitter.StyleElements := []
)。更改“拆分器”的 VCL 样式位图样式设计器的对象元素,但修改此对象元素不会更改拆分器的外观。
试图处理对象
WM_ERASEBKGND
上的消息TControl
,但我无法在我的插入器类中调用该过程。procedure WMEraseBkgnd(var Msg: TWMEraseBkgnd); message WM_ERASEBKGND; ... procedure TSplitter.WMEraseBkgnd(var Msg: TWMEraseBkgnd); begin // this is never invoked by the TSplitter Msg.Result := 1; end;
摆脱闪烁的任何其他想法TSplitter
?据我所知,没有 DoubleBuffer 属性TSplitter
或类似的东西。
更新
不幸的是,我不能分享代码库,但我可以告诉你,这是在TSplitter
闪烁时设置应用程序 UI 的方式:
TForm (DoubleBuffered = False)
-> BackgroundPanel (DoubleBuffered = True, ParentBackground = False)
-> -> A TGradient, image and label to fill the BackgroundPanel
-> LeftPanel (ParentBackground = False`, no flickering)
-> -> LeftPanelFrame and frame content (selective double buffering)
-> TSplitter
-> RightPanel (ParentBackground = False, no flickering)
-> -> RightPanelFrame and frame content (selective double buffering)
表单顶部还有一个工具栏和一个主菜单,但其余的 UI 组件设置为 alClient(或 OnResized 以填充空间)。
我假设由于 BackgroundPanel 位于 LeftPanel TSplitter
、 和 RightPanel 后面(即 Control -> Send to Back),BackgroundPanel 上的DoubleBuffered = True
和ParentBackground = False
将有助于减少/消除其前面直接 UI 层上任何组件的闪烁(即TSplitter
)。但是,情况似乎并非如此。
也许我会尝试将 aTPanel
作为 LeftPanel TSplitter
、 和 RightPanel 的父级并设置它的DoubleBuffered = True
and ParentBackground = False
。稍后我将不得不尝试并返回。所以,它看起来像这样:
TForm
-> BackgroundPanel (DoubleBuffered = True, ParentBackground = False)
-> -> A TGradient, image and label to fill the BackgroundPanel
-> EncapsulatingPanel (DoubleBuffered = True, ParentBackground = False)
-> -> LeftPanel (ParentBackground = False)
-> -> -> LeftPanelFrame and frame content
-> -> TSplitter
-> -> RightPanel (ParentBackground = False)
-> -> -> RightPanelFrame and frame content
最后,我应该注意,在调整大小时(窗口右侧的黑色轨迹),双缓冲 TForm 会显着减慢 UI,而不是在应用程序未调整大小时执行其他 UI 操作时。
更新 2
不幸的是,虽然我上面的方法(创建背景父级TPanel
)修复了 上的闪烁TSplitter
,但它也导致了其他奇怪的 UI 问题,也许@David Heffernan 在评论中提到了其中的一些问题。现在,我刚刚离开了闪烁的问题,因为拆分器只有 1px 宽,并且只有在调整宽度 + 高度时才会闪烁。