user interface - Sending Matlab GUI into the background -
i have annoying problem matlab gui.
once start program gui can not send background, pops again arbitrary number of times, until decides stay. have minimize @ least 10 times before stays there.
is common behaviour? have not modified of gui initialization code, added button execute function in loop.
any ideas welcome!
cheers, chris
yeah, annoyed too. can hide gui (either within code or on command line) with
set(myguifigurehandle, 'visible', 'off')
and restore
set(myguifigurehandle, 'visible', 'on')
which fine in situations, not if user wants minimize time being. detect minimize , hide, figure window disappear task bar, , way restore visibility code or command line.
Comments
Post a Comment