I have a winforms which I am using the ultradockmanager on. I have a docked pane on the right set to hidden so that it is auto hidden unless moused over.
I have a button on another user control (not on the hidden control) that when pressed, should cause the hidden panel to fly out. How do I auto fly them out programmatically?
Hello James,
Thank you for the update. After getting the pane instead of calling show try execute command flyout:
pane.ExecuteCommand(ContentPaneCommands.Flyout);
Thanks for the response.I am calling the Show() method on my unpinned pane. Unfortunately, this is not having the desired effect. My hidden pane does not fly out when I call this method.
These are some of the properties of my pane before I call the 'Show()' method.Any ideas?
Thank you for contacting Infragistics!
You can see this forum thread on how to programmatically fly out a panel.