Hi ActiPro Team,
I want to provide a fix size to the tool window. Means what I did is as given below:-
Window window = Window.GetWindow(toolWindow);
window.Height = 60;
window.Width = 850;
window.MinHeight = 60;
window.MinWidth = 850;
window.MaxHeight = 60;
window.MaxWidth = 910;
canExecuteGrip = false;
Now as you can see MinHeight and MinWidth has been applied on the window, but MaxHeight and MaxWidth is not being applied.
Please suggest how to proceed for the same?