Changeset 497 for trunk/Packages
- Timestamp:
- Dec 18, 2023, 10:47:05 PM (11 months ago)
- Location:
- trunk/Packages
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CevoComponents/DrawDlg.pas
r495 r497 196 196 // Fix this to keep them visible. 197 197 if (TFormStateType.fsModal in FormState) and Visible then 198 Application.Re moveStayOnTop(True);198 Application.RestoreStayOnTop(True); 199 199 200 200 MoveActive := False; -
trunk/Packages/DpiControls/Dpi.Forms.pas
r496 r497 193 193 procedure CreateForm(InstanceClass: TComponentClass; out Reference); 194 194 procedure RemoveStayOnTop(const ASystemTopAlso: Boolean = False); 195 procedure RestoreStayOnTop(const ASystemTopAlso: Boolean = False); 195 196 function MessageBox(Text, Caption: PChar; Flags: Longint = MB_OK): Integer; 196 197 property MainForm: TForm read GetMainForm write SetMainForm; … … 470 471 end; 471 472 473 procedure TApplication.RestoreStayOnTop(const ASystemTopAlso: Boolean); 474 begin 475 GetNativeApplication.RestoreStayOnTop(ASystemTopAlso); 476 end; 477 472 478 function TApplication.MessageBox(Text, Caption: PChar; Flags: Longint 473 479 ): Integer;
Note:
See TracChangeset
for help on using the changeset viewer.