Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

prabhat kumar sharma
prabhat kumar sharma el 26 de Sept. de 2023
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

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by