码迷,mamicode.com
首页 > 其他好文 > 详细

delphi 改变闪动光标

时间:2014-09-17 11:34:02      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:ar   for   sp   on   c   r   bs   tt   ca   

delphi 改变闪动光标

// 不同风格的光标
procedure TForm1.Edit1MouseDown(Sender: TObject; Button: TMouseButton;Shift: TShiftState; X, Y: Integer);
begin
CreateCaret(Edit1.Handle, 0, 10, 4);
ShowCaret(Edit1.Handle);
end;// 用图像做光标
procedure TForm1.Memo1MouseDown(Sender: TObject; Button: TMouseButton;Shift: TShiftState; X, Y: Integer);
begin
CreateCaret(Memo1.Handle, Image1.Picture.Bitmap.Handle, 0, 0);
ShowCaret(Memo1.Handle);
end;

 

delphi 改变闪动光标

标签:ar   for   sp   on   c   r   bs   tt   ca   

原文地址:http://www.cnblogs.com/honeynm/p/3976486.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!