Files
imdd_silas/Functions/waitUntilClick.m
Silas Labor Zizou cf4e0f2b12 measurement state
2024-10-29 14:38:22 +01:00

20 lines
758 B
Matlab

function waitUntilClick()
% Create the UI figure
fig = uifigure('Name', 'Pause Execution', 'Position', [100 100 300 150]);
% Create a label to inform the user
uilabel(fig, 'Position', [50 80 200 40], 'Text', 'Click "Continue" to proceed', ...
'FontSize', 14, 'HorizontalAlignment', 'center');
% Create the "Continue" button
continueButton = uibutton(fig, 'push', 'Text', 'Continue', 'Position', [100 20 100 40], ...
'ButtonPushedFcn', @(src, event) closeWindow());
% Function to close the window when "Continue" is clicked
function closeWindow()
delete(fig); % Close the figure window
end
% Wait until the figure is closed to resume execution
waitfor(fig);
end