Hi,
I want the floating pane to maximize on double click on the title bar? can some one pls let me know how to achieve this behavior. ? I want the same behavior as the panes behave in VS 2010. I am using 11.2 version of infragistics.
Hello,
If the panes you are referring to are not mdi children, the Maximized property is for the state/size of the pane when it is in a group with another pane/other panes. If the pane is an mdi form you could set the 'WindowState' property to 'Maximized'. If your scenario is the first one and you do not like this behavior I could log a new product idea for you. Please let me know.
Hi Boris, Yes my scenario is first one. The pane I have are not mdi children. I wanted them to maximize if I double click on the title bar in floating state.
After some research, the "Ability to maximize floating panes" has been determined to be a new product idea. I have sent your idea directly to our product management team.
Our product team chooses new ideas for development based on popular feedback from our customer base. Infragistics continues to monitor application development for all of our products, so as trends appear in requested features, we can plan accordingly.
We value your input, and our philosophy is to enhance our toolset based on customer feedback. If your idea is chosen for development, you will be notified at that time.
Your reference number for this product idea is PI12060124.
If you would like to follow up on your request at a later point, you may contact Developer Support management via email. Please include the reference number of your product idea in the subject and body of your email message. You can reach Developer Support management through the following email address: dsmanager@infragistics.com
Could you please try that:
if (e.Pane.DockedState == Infragistics.Win.UltraWinDock.DockedState.Floating) (e.Pane as DockableControlPane).Control.FindForm().WindowState = FormWindowState.Maximized;
In AfterToggleDockState and/or AfterDockChange.
Please feel free to let me know if a question about our toolset comes up on your mind.