码迷,mamicode.com
首页 > Windows程序 > 详细

delphi实现起泡提示效果

时间:2020-07-17 16:21:43      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:graph   fir   classes   roc   tip   variant   ant   long   message   

unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;

const
  ECM_FIRST               = $1500;
  EM_SHOWBALLOONTIP   = ECM_FIRST + 3;
  EM_HIDEBALLOONTIP   = ECM_FIRST + 4;
type
  _tagEDITBALLOONTIP = packed record
    cbStruct: DWORD;
    pszTitle,
    pszText : PWideChar;
    ttiIcon : integer;
  end;
  TEditBalloonTip = _tagEDITBALLOONTIP;

type
  TForm1 = class(TForm)
    edit1: TEdit;
    button1: TButton;
    Memo1: TMemo;
    procedure button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.button1Click(Sender: TObject);
var
  ebt: TEditBalloonTip;
begin
  with ebt do
  begin
    cbStruct := SizeOf(ebt);
    pszTitle := ‘提示‘;
    pszText := ‘请输入内容‘;
    ttiIcon := 3;         {NONE:0;INFO:1;WARNING:2;ERROR:3   不同状态}
  end;
  SendMessage(memo1.Handle,EM_SHOWBALLOONTIP,0,Longint(@ebt));
end;

end.

delphi实现起泡提示效果

标签:graph   fir   classes   roc   tip   variant   ant   long   message   

原文地址:https://www.cnblogs.com/zyb2016/p/13330053.html

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