T
TENTODBV
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.FormCreate(Sender: TObject);
var
tf : TFont;
lf : LOGFONT;
begin
button1.Height:=297;
button1.Width:=137;
button1.Font.Name:='宋体';
button1.Font.Color:=clred;
button1.Font.Size:=22;
button1.Caption:='旋转字体';
tf := TFont.Create;
try
tf.Assign(Button1.Font);
GetObject(tf.Handle,SizeOf(LOGFONT),@lf);
lf.lfEscapement := 900;
lf.lfOrientation := 900;
tf.Handle := CreateFontIndirect(lf);
Button1.Font := tf;
finally
tf.Free;
end;
end;
var
tf : TFont;
lf : LOGFONT;
begin
button1.Height:=297;
button1.Width:=137;
button1.Font.Name:='宋体';
button1.Font.Color:=clred;
button1.Font.Size:=22;
button1.Caption:='旋转字体';
tf := TFont.Create;
try
tf.Assign(Button1.Font);
GetObject(tf.Handle,SizeOf(LOGFONT),@lf);
lf.lfEscapement := 900;
lf.lfOrientation := 900;
tf.Handle := CreateFontIndirect(lf);
Button1.Font := tf;
finally
tf.Free;
end;
end;