procedure TLMDDockPanel.WMLButtonDblClk(var Message: TWMLButtonDblClk);
begin
inherited;
if PtInRect(FHeaderArea, TPoint.Create(Message.XPos, Message.YPos))
then FOnHeaderDblClick(Self);
end;
This works fine for panels in a docksite. But it is not called for floating panels because the header is displayed as floating form caption the change will be more complicate.
So I'm wondering if there is another way to track this event or if you can add such an event in a future update.
cu Christian
Comments
cu Christian