应用 VCL 样式时,Delphi XE2 中的文本编辑器出现问题。如果我在窗体上放置了 2 个 TMemo 控件(Memo1 和 Memo2),并且 Memo1 部分位于 Memo2 后面,则 Memo1 的 scollbars 将绘制在 Memo2 上。
我试图创建一个继承自 TScrollingStyleHook 的样式挂钩,但我没有找到任何解决问题的方法。有人知道如何修复这个错误吗?
顺便说一句:我也在 Delphi XE5 中测试过它,它的行为方式相同。
以下是 .dfm 和 .pas 文件的源代码:
DFM:
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 282
ClientWidth = 418
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Memo1: TMemo
Left = 120
Top = 80
Width = 185
Height = 89
Lines.Strings = (
'Memo1')
ScrollBars = ssBoth
TabOrder = 0
end
object Memo2: TMemo
Left = 160
Top = 128
Width = 185
Height = 89
Lines.Strings = (
'Memo2')
ScrollBars = ssBoth
TabOrder = 1
end
end
考绩:
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
Memo1: TMemo;
Memo2: TMemo;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
end.