- First Create your application.
- Click on the app.UIFigure in the component browser and uncheck the “autoResizeChildren” Property.
- Add a “SizeChangdFcn” Callback for the UIFigure.
- Use the properties to control the minimum height and width using the below code.
Possibility that resizable-app-window has lower width- and height-limits dependent to the grid-layout inside of it?
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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.
0 commentaires
Réponse acceptée
  prabhat kumar sharma
      
 le 26 Sep 2023
        Hi @Nico
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. 
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
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

