• delphi 改变闪动光标


    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;

  • 相关阅读:
    数组函数
    跨域
    连接数据库的几种方式
    PHP语言的优缺点
    盗链
    缓存
    电商架构演进
    分布式集群
    序列化
    json
  • 原文地址:https://www.cnblogs.com/honeynm/p/3976486.html
Copyright © 2020-2023  润新知