Hi ,
I actually wants to know is there any way for me to know that I am exiting from my plug-in help page?
I wants to close few of the object which i am using in help page once I moved to any tab in the laft panel.
for example I will click from SMSGateway plug-in to Analytic events as shown in the below image. .During that time there is no event raised to know that it is leaving from SMSGateway help page.
I have override the close method which didnot help and also handled HelpPage_Leave event but not helping.
Please do assist in finding it.
The Enterprise “Management Application” and the Corporate Management Client might work a bit different, but please try use/implement the ItemManager.ReleaseUserControl() method.
I have already tried this but will not get hit this function when we navigate to other pages. This will get hit only on close of the management application.Even I have even tried with ItemManager.ClearUserControl() method But no luck.
This will work when we are navigating within the black box but will not work when we navigate shown in red arrow mark as shown in the below image.
And my itemnode code is as below
_itemNodes = new List{
new ItemNode(SMSGatewayKind,
Guid.Empty,
"SMSGateway", \_treeNodeImage,
"SMSGateways", \_treeNodeImage,
Category.Text, true,
ItemsAllowed.Many,
new SMSGatewayItemManager(SMSGatewayKind),
null
)
};
I dont think the help page is expected to provide states and updates.
Did you try to implement it by using the “GenerateOverviewUserControl”?