delphi – 使用UseExplorerThemes的VirtualTreeView

前端之家收集整理的这篇文章主要介绍了delphi – 使用UseExplorerThemes的VirtualTreeView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚发现使用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;

解决此问题,请按以下方式修改代码:@H_404_3@

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@

原文链接:https://www.f2er.com/delphi/102898.html

猜你在找的Delphi相关文章