Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Delphi Neue Action von TWindowAction setzt die anderen ausser Kraft (https://www.delphipraxis.net/138849-neue-action-von-twindowaction-setzt-die-anderen-ausser-kraft.html)

AXA-Winti 18. Aug 2009 15:23


Neue Action von TWindowAction setzt die anderen ausser Kraft
 
Hallo zäme

Habe soeben von Delphi 7 auf Delphi 2009 migriert. Dabei habe ich festgestellt, dass folgendes nicht mehr funktioniert:

In meiner MDI-Applikation habe ich eine neue Standard-Action für das Fensterverhalten erstellt:

Delphi-Quellcode:
  TWindowCloseAll = class(TWindowAction)
  public
    procedure     ExecuteTarget (obTarget : TObject);   override;
  end;

procedure TWindowCloseAll.ExecuteTarget(obTarget: TObject);
var
  iIndex: Integer;
begin
  with GetForm(obTarget) do
    for iIndex := MDIChildCount - 1 downto 0 do
      MDIChildren[iIndex].Close;
end;
Das ganze habe ich auch registriert, so dass es via der ActionList auf dem Formular auswählbar ist:

Delphi-Quellcode:
  RegisterActions('Fenster', [TWindowCloseAll], nil);
Damit das ganze auch geht, läuft es in einem Design-Package.

Das ganze hat unter Delphi 7 funktioniert. Jetzt mit Delphi 2009, wenn ich meine Action in der ActionListe dazunehme (noch nicht einmal mit einer Komponente verbinde), werden alle anderen Standard-Actions von Delphi für das Fenster wie z.B. TWindowClose, TWindowTileHorizontal, etc. wirklungslos.

Ich habe dann auch einmal eine Leere Action erstellt und Registriert mit dem selben Phänomen.

Kann mir nicht vorstellen, wo das Problem ist und komme nicht weiter. Für eine Hilfe bin ich sehr dankbar.

Gruss
Stefan


Alle Zeitangaben in WEZ +1. Es ist jetzt 12:30 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz