unigui 1.90.0 Example

Example
//-------------------------------------
1:[UNG-2783] - ReCaptcha 
-------
//无法显示 
//-------------------------------------
2:[UNG-2784] - ShowProgress
-------
i: Integer;
begin
  ShowProgress('Please Wait...');
  UniSession.Synchronize;
  for i := 1 to 10 do
  begin
    Sleep(500);
    UpdateProgress(i/10, Format('%%%d Completed', [i*10]));
    UniSession.Synchronize;
  end;
  HideProgress;
  ShowToast('Process Finished');
//-------------------------------------
 3:  [UNG-2785] - IconCombobox
------- 
UniComboBox1.Images:=UniNativeImageList1
UniComboBox1.IconItems具体设置信息
//-------------------------------------

猜你喜欢

转载自blog.csdn.net/ozhy111/article/details/89051736