How to move or relocate the figure window and message box?
Mostrar comentarios más antiguos
Hi,
I have 3 windows
1) Area Information
2) figure 1 with histogram information
3) Input Dialogbox
Here is the snapshot of that. My trouble is that, I couldn't able to move the 1 and 2 windows. I could able to move only window 3.
This is the code I used:
%code for Window1
regionData=regionprops(imageThresh,'basic');
minArea=min([regionData.Area]);
maxArea=max([regionData.Area]);
message=sprintf('Minimum Area = %d \n\nMaximum Area = %d',minArea,maxArea);
h=msgbox(message, 'Area Information' );
set(h,'Position',[350 499 150 70])
% code for window2
figure('name',sprintf('Histogram Information - %s',baseFileName),'NumberTitle','off');
hist([regionData.Area],20);
%code for window 3
prompt = {'Enter Minimum pixel area(default value is 2) - ',...
'Enter Maximum pixel area(default value is 100) -'};
dlg_title = 'Max/Min Pixel Area Selection';
num_lines = 1;
def = {'2','100'};
options.Resize='on';
answer=inputdlg(prompt,dlg_title,num_lines,def,options);
close;

Is there any method such that I can move all the 3 windows. I means to relocate the windows on the screen using the mouse cursor.
Thanks in advance.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!