虚拟树视图将垂直滚动条放置在RightToLeft bidimode的右侧

时间:2018-11-01 06:07:03

标签: delphi virtualtreeview

是否可以在RightToLeft bidimode的右侧放置Virtual treeview的垂直滚动条,并在LeftToRight模式下将其放置在左侧?

1 个答案:

答案 0 :(得分:2)

为什么不呢?如果TVirtualTreeView使用系统滚动条,则可以通过设置适当的扩展样式来完成。

procedure TForm1.Button2Click(Sender: TObject);
const
  LSB = WS_EX_LEFTSCROLLBAR;
var
  ExStyle: LONG_PTR;
begin
  ExStyle := GetWindowLongPtr(AVTV.Handle, GWL_EXSTYLE);

  // Check if RTL alignment specified for you component
  if AVTV.BiDiMode = bdRightToLeft then
    begin
      // If so, then exclude LSB-constant and allow Windows place 
      // scrollbar on the right side of window
      if (ExStyle and LSB) = LSB then
        SetWindowLongPtr(AVTV.Handle, GWL_EXSTYLE, ExStyle and not LSB);
    end
  else
  if AVTV.BiDiMode = bdLeftToRight then
    begin
      // The same as operation above but for LTR order
      if (ExStyle and LSB) <> LSB then
        SetWindowLongPtr(AVTV.Handle, GWL_EXSTYLE, ExStyle or LSB);
    end;
end;

LSB常量用于使代码在发布时更紧凑。

另请参见