Change Color of each individual item in a Listbox (using APP designer)
    27 views (last 30 days)
  
       Show older comments
    
    Ma Yuelin
 on 26 Jan 2022
  
    
    
    
    
    Answered: Jasmine Poppick
    
 on 17 Mar 2023
            I want to know how to change the color of each individual item in a Listbox. I know there are some solutions using uicontrol, but I want to know how to do it in APP designer.
0 Comments
Accepted Answer
  Jasmine Poppick
    
 on 17 Mar 2023
        In the StartupFcn callback of the app, you can create a style using uistyle and specify the BackgroundColor property, and then add the style to an item of the list box. For example:
s = uistyle(BackgroundColor="yellow");
addStyle(app.ListBox,s,"item",2)
0 Comments
More Answers (2)
See Also
Categories
				Find more on Develop Apps Using App Designer in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


