Autor Beitrag
Tino
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Veteran
Beiträge: 9839
Erhaltene Danke: 45

Windows 8.1
Delphi XE4
BeitragVerfasst: Di 03.09.02 10:38 
Um ein untergeordnetes Fenster in der Taskbar als eigenen Eintrag erscheinen zu lassen benötigt man folgenden Code:
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
Type
  tForm1 = Class (tForm)
      {...}
    Private
      Procedure CreateParams (Var Params: tCreateParams);  Override;
      {...}
    Public
      {...}
    End;

Implementation

Procedure tForm1.CreateParams (Var Params: tCreateParams);
Begin
  Inherited CreateParams (Params);

  Params.WndParent := GetDesktopWindow;
  Params.Caption := 'Title';
End;