I am working on an application which uses an UltraDockManager to get a DockablePaneBase and displays it. (See the code snippet below.) How would I keep this pane from being resized? So far, my solution is to set the MaximumSize and MinimumSize properties equal to the ActualSize. Is there a better way to do this?
DockablePaneBase dockablePaneChartOptions = this.ultraDockManager.PaneFromKey(PaneKeyChartOptions);
...
dockablePaneChartOptions.MinimumSize = dockablePaneChartOptions.ActualSize;
dockablePaneChartOptions.MaximumSize = dockablePaneChartOptions.ActualSize; dockablePaneChartOptions.Show();
Hello,
I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue?
Thank you for using Infragistics Components.