作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含 4 列的 VirtualStringTree (VST) 的简单示例,在第二列或第三列中我可以有更多适合默认列宽度的文本。我启用了 hoAutoSpanColumns,因此大文本将与其他列(如果它们为空)重叠。这效果很好。问题是第二列或第三列中的文本应跨越 VST 的整个长度。在这种情况下,大列仅延伸到最后(第四)列的末尾。
以下是第 3 行中的第 2 列如何仅跨越第 3 列和第 4 列,然后停在第 4 列的宽度处:
如果我使用 AutoFitColumns 自动调整第二列的大小:
VST1.Header.AutoFitColumns(false, smaUseColumnOption,1,1);
然后它会插入第三列和第四列,以便它们从第二列的末尾开始:
但是我需要第三列和第四列保持在相同的位置,如下所示:
有没有办法自动调整第二列到文本,但将第三列和第四列保持在原来的位置?
最佳答案
目前没有内置方法可以将标题自动调整为跨列文本。要自动调整给定列的大小以查看整个跨区文本,您可以编写如下代码(对于单个节点)。请注意,VT 中的自动跨度功能目前不支持 RTL 读取(因此此代码也不支持):
type
TVirtualStringTree = class(VirtualTrees.TVirtualStringTree)
protected
function GetSpanColumn(Node: PVirtualNode): TColumnIndex; virtual;
public
procedure AutoFitSpanColumn(DestColumn: TColumnIndex; Node: PVirtualNode);
end;
implementation
{ TVirtualStringTree }
function TVirtualStringTree.GetSpanColumn(Node: PVirtualNode): TColumnIndex;
begin
{ this returns visible span column for the given node, InvalidColumn otherwise }
Result := Header.Columns.GetLastVisibleColumn;
while ColumnIsEmpty(Node, Result) and (Result <> InvalidColumn) do
Result := Header.Columns.GetPreviousVisibleColumn(Result);
end;
procedure TVirtualStringTree.AutoFitSpanColumn(DestColumn: TColumnIndex; Node: PVirtualNode);
var
ColsWidth: Integer;
SpanWidth: Integer;
SpanOffset: Integer;
SpanColumn: TColumnIndex;
begin
SpanColumn := GetSpanColumn(Node);
if SpanColumn <> InvalidColumn then
begin
{ get the total width of the header }
ColsWidth := Header.Columns.TotalWidth;
{ get the width of the span text cell as it would be autosized }
SpanWidth := DoGetNodeWidth(Node, SpanColumn) + DoGetNodeExtraWidth(Node, SpanColumn) +
DoGetCellContentMargin(Node, SpanColumn).X + Margin;
{ and get the left position of the span cell column in header }
SpanOffset := Header.Columns[SpanColumn].GetRect.Left;
{ now, the width of the autosized column we increase by the subtraction of the fully
visible span cell width and all columns width increased by offset of the span cell
column; in other words, we'll just increase or decrease width of the DestColumn to
the difference of width needed for the span column to be fully visible, or "fit" }
Header.Columns[DestColumn].Width := Header.Columns[DestColumn].Width +
SpanWidth - ColsWidth + SpanOffset;
end;
end;
关于delphi - 如何在 TVirtualStringTree 中自动调整跨度列的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46332824/
我是一名优秀的程序员,十分优秀!