Possibility that resizable-app-window has lower width- and height-limits dependent to the grid-layout inside of it?

2 次查看(过去 30 天)
Is there a possibility that resizable-app-window has lower width- and height-limits dependent to the grid-layout inside of it?
I would like to avoid that the window of my app is beeing resized to the extent that elements are no longer visible.

采纳的回答

prabhat kumar sharma
I understand you are facing problem with the ability of resizing the app window of UIFigure beyond the certain limit ,and you want to set the minimum resizable limit for the window.
So I have tried the same on a application and I am able to find one solution for your usecase.
Find the below steps.
  1. First Create your application.
  2. Click on the app.UIFigure in the component browser and uncheck the “autoResizeChildren” Property.
  3. Add a “SizeChangdFcn” Callback for the UIFigure.
  4. Use the properties to control the minimum height and width using the below code.
function UIFigureSizeChanged(app, event)
currentWidth = app.UIFigure.Position(3);
currentHeight = app.UIFigure.Position(4);
% Define the minimum width and height limits
minWidth = 500; % Set the minimum width limit
minHeight = 400; % Set the minimum height limit
% Adjust the window size if it goes below the minimum limits
if currentWidth < minWidth
app.UIFigure.Position(3) = minWidth;
end
if currentHeight < minHeight
app.UIFigure.Position(4) = minHeight;
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by