Create a TdxBarManager on Application.Mainform, will create additional 4 TdxDockControl instances in the form. This can be detected in TForm.ControlCount property.
However, when the TdxBarManager instance is free, the TForm.ControlCount value remain and didn't decrease. This issue may cause error (not always) in the following code (unit Forms.pas):
Delphiprocedure TraverseClients(Container: TWinControl);
var
I: Integer;
Control: TControl;
begin
if Container.Showing and not (csDesigning in Container.ComponentState) then
for I := 0 to Container.ControlCount - 1 do
begin
Control := Container.Controls[I];
if (csActionClient in Control.ControlStyle) and Control.Visible then
Control.InitiateAction;
if (Control is TWinControl) and (TWinControl(Control).ControlCount > 0) then
TraverseClients(TWinControl(Control));
end;
end;
To replay the problem, run the following code:
Delphivar i1, i2, i3: Integer;
B: TdxBarManager;
begin
// Get initial control count
i1 := Application.MainForm.ControlCount;
B := TdxBarManager.Create(Application.MainForm);
i2 := Application.MainForm.ControlCount;
// control count increased by 4 TdxDockControl
Assert(i2 = i1 + 4);
B.Free;
// After free TdxBarManager instance, control count didn't decrease
i3 := Application.MainForm.ControlCount;
Assert(i3 = i1);
end;
A workaround solution is to disable execution of line 17007 and 17008 in unit dxBar.pas:
Change
if ADockControl.Main and (FBars <> nil) then
{FBars.FDockControls[ADockControl.FDockingStyle] := nil};
to
// if ADockControl.Main and (FBars <> nil) then
// FBars.FDockControls[ADockControl.FDockingStyle] := nil;
and patch method TdxBarManager.Notification in dxBar.pas:
procedure TdxBarManager.Notification(AComponent: TComponent; Operation: TOperation);
var
I: Integer;
begin
inherited;
if (Operation = opRemove) and (FPopupMenuLinks <> nil) then
begin
if AComponent is TControl then
for I := 0 to FPopupMenuLinks.Count - 1 do
if FPopupMenuLinks[I].Control = AComponent then
FPopupMenuLinks[I].Control := nil;
if AComponent is TdxBarPopupMenu then
for I := 0 to FPopupMenuLinks.Count - 1 do
if FPopupMenuLinks[I].PopupMenu = AComponent then
FPopupMenuLinks[I].PopupMenu := nil;
// Patch Start
if AComponent is TdxDockControl then
FBars.FDockControls[(AComponent as TdxDockControl).DockingStyle] := nil;
// Patch End
end;
end;
I am afraid this information is not enough to answer you precisely why this happens. Would you please provide us with a sample project to demonstrate the issue and more detailed information about the functionality you are trying to implement?
The problem doesn't happen in standalone application. It happen to those application built with runtime packages. I have attached a sample project that built with runtime packages and you should be able to replay the problem.
Hello,
Thank you for the clarification. I am forwarding this issue to our developers for further processing.
You will receive an automatic message once the status of this issue is changed.