1. 程式人生 > >AlertWindowManager 彈出提示窗口使用幫助(下)

AlertWindowManager 彈出提示窗口使用幫助(下)

form obj clas ssa str logs message cti 事件

//顯示消息提示框
//function TdxAlertWindowManager.Show(const ACaption, AText: string; AImageIndex: TcxImageIndex = -1): TdxAlertWindow;
//ACaption顯示標題
//AText消息內容
//AImageIndex顯示圖片索引
procedure TForm1.Button1Click(Sender: TObject);
begin
  dxAlertWindowManager1.Show(消息提示框標題, 這裏是消息內容,這裏是消息內容!);
end;
//dxAlertWindowManager點擊按鈕事件
procedure TForm1.dxAlertWindowManager1ButtonClick(Sender: TObject; AAlertWindow: TdxAlertWindow; AButtonIndex: Integer); begin if AButtonIndex = 0 then ShowMessage(Button1) else if AButtonIndex = 1 then ShowMessage(Button2) else if AButtonIndex = 2 then ShowMessage(Button3);
end;

AlertWindowManager 彈出提示窗口使用幫助(下)