我正在使用一个Delphi XE2项目来显示滚动文本。我的代码如下:
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Timer1: TTimer;
procedure Timer1Timer(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
Label1.Caption := 'This is right scrolling text ';
Timer1.Enabled := true;
end;
procedure TForm1.Timer1Timer(Sender: TObject);
var
S: String;
begin
S := Label1.Caption;
S := S[Length(S)] + Copy(S, 1, Length(S) - 1);
Label1.Caption := S;
end;
end.
使用以下代码,文本在2d沿Y轴完美滚动。
如何滚动Sinusoidal Wave
中的文字?
答案 0 :(得分:0)
Angus Johnson对优秀的graphics32库的优秀GR32_Text扩展似乎可以满足您的需求。您可以从上面的链接下载的演示显示您要求的效果。剩下的就是让你在绘画框或类似的控件中为文本设置动画。