-1

我有一个 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.

使用以下代码,文本沿 Y 轴在 2d 中完美滚动。

如何滚动文本Sinusoidal Wave

示例波浪文本

4

1 回答 1

0

Angus Johnson 优秀的GR32_Text对精细 graphics32 库的扩展似乎可以满足您的需求。您可以从上面的链接下载的演示只是显示您要求的效果。剩下的就是让您在画框或类似控件中为文本设置动画。

于 2013-08-18T20:29:28.577 回答