hello, i have two dockablecontrolpane in a dockareapane, the problem is when i flyout one of them, pin it and then unpin it, this one go at the last position of the group and so on, is there a property to fix the position so that it never change?
Example
before flyout, pin and unpin
Tab1/Tab2
after flyout, pin and unpin
Tab2/Tab1
thank you very much.
Been trying to think of a way around this and your solution works! Thanks. :)
i got it, closing all controls and open them again, respect the initial configuration
private void ultraDockManager1_AfterPaneButtonClick(object sender, PaneButtonEventArgs e) { if (e.Button == PaneButton.Pin) { if (!this.ultraDockManager1.ControlPanes[e.Pane.Key].Pinned) { foreach (DockableControlPane control in this.ultraDockManager1.ControlPanes) { control.Close(); control.Show(); control.Unpin(); } this.ultraDockManager1.ControlPanes[e.Pane.Key].Flyout(false,false); }
} }
thanks
I don't think its possible to get around this. You can submit a feature request for this ability: http://devcenter.infragistics.com/Protected/RequestFeature.aspx.