我刚刚发现使用Option toUseExplorerTheme可以为VirtualStringTree生成一个很好的选择矩形.但是,如果设置了Option toGridExtensions并且树中有多个列,则不会为内部单元格绘制选区的垂直边框,并且也会丢失圆角.仅正确绘制左侧和最右侧列的最外边缘和角.看起来好像选择矩形是在最外面的列之间绘制的,而非选定列的背景只是在选择矩形上绘制.
关闭toGridExtensions会产生一个正确的选择矩形,但我更喜欢打开它,因为只能通过单击标准模式中的文本来选择单元格(而不是单击文本旁边的空白区域).@H_404_3@
Delphi 7和XE2会出现问题,也可能与其他版本一起出现问题.@H_404_3@
要重现向表单添加TVirtualStringTree,显示标题,向标题添加多个列,并激活选项toGridExtensions(MiscOptions),toUseExplorerTheme(PaintOptions),toExtendedFocus(SelectionOptions),运行程序并单击任何单元格.@H_404_3@
解决方法
在我看来这是一个错误,因为谁想要这样的选择:
要在虚拟树视图代码(在我的情况下为v.5.1.4)中修复它,请转到TBaseVirtualTree.PrepareCell方法(在我的案例行25802中)并检查此嵌套过程代码(注释是我的):@H_404_3@
procedure DrawBackground(State: Integer); begin // here the RowRect represents the row rectangle and InnerRect the cell // rectangle,so there should be rather,if the toGridExtensions is NOT // in options set or the toFullRowSelect is,then the selection will be // drawn in the RowRect,otherwise in the InnerRect rectangle if (toGridExtensions in FOptions.FMiscOptions) or (toFullRowSelect in FOptions.FSelectionOptions) then DrawThemeBackground(Theme,PaintInfo.Canvas.Handle,TVP_TREEITEM,State,RowRect,nil) else DrawThemeBackground(Theme,InnerRect,nil); end;
procedure DrawBackground(State: Integer); begin // if the full row selection is disabled or toGridExtensions is in the MiscOptions,draw the selection // into the InnerRect,otherwise into the RowRect if not (toFullRowSelect in FOptions.FSelectionOptions) or (toGridExtensions in FOptions.FMiscOptions) then DrawThemeBackground(Theme,nil); end;
你会得到这样的选择:@H_404_3@
这同样适用于下一个DrawThemedFocusRect嵌套过程.@H_404_3@
我已将此问题报告为Issue 376
,已于revision r587
修复.@H_404_3@