Zitat:
Verwendest du irgendwelche Compos und Compo-Packages, die nicht bei Delphi dabei waren?
Nein
Hier mal meine Einstellungen von XP-Menu
Delphi-Quellcode:
var
XPMenu1: TXPMenu;
XPMenu1 := TXPMenu.Create(Self);
with XPMenu1 do
begin
Name := 'XPMenu1';
DimLevel := 30;
GrayLevel := 10;
Font.Charset := DEFAULT_CHARSET;
Font.Color := clMenuText;
Font.Height := -11;
Font.Name := 'Tahoma';
Font.Style := [];
Color := 16744576;
DrawMenuBar := True;
IconBackColor := 16744576;
MenuBarColor := 16744576;
SelectColor := clAqua;
SelectBorderColor := clAqua;
SelectFontColor := clMenuText;
DisabledColor := 16744576;
SeparatorColor := clSkyBlue;
CheckedColor := clCaptionText;
IconWidth := 24;
DrawSelect := True;
UseSystemColors := False;
UseDimColor := False;
OverrideOwnerDraw := True;
Gradient := False;
FlatMenu := False;
AutoDetect := True;
XPContainers := [];
XPControls := [xcMainMenu, xcPopupMenu, xcGroupBox, xcTreeView, xcListView, xcProgressBar, xcHotKey];
Active := False;
end;