Hallo Christian.
Stelle AutoNavigate und AutoContextMenus auf FALSE - und dann brauchst du noch zwei event handler:
Delphi-Quellcode:
procedure TDemoForm.ShellListViewDblClick(Sender: TObject);
begin
DisplayPanel.Caption := ShellListView.SelectedFolder.PathName;
end;
procedure TDemoForm.ShellListViewContextPopup(Sender: TObject;
MousePos: TPoint; var Handled: Boolean);
begin
Handled := true;
end;
Grüße vom marabu