How to move figure window to front of all programs?

81 次查看(过去 30 天)
Is there a way to force a figure window to show in front of all other windows (not just Matlab ones, but other programs)?

采纳的回答

Walter Roberson
Walter Roberson 2016-10-1
If you are using MS Windows you could experiment with using the 'topmost' command in Jan's File Exchange contribution https://www.mathworks.com/matlabcentral/fileexchange/31437-windowapi
  1 个评论
Brandon
Brandon 2016-10-1
Works perfectly! I was already using WindowAPI for some things so this is even better. Thank you.

请先登录,再进行评论。

更多回答(1 个)

Raph
Raph 2022-12-29
编辑:Raph 2022-12-29
This question is ambiguous, but I think what "most people" would be looking for searching for an answer to this question are the following:
How to bring to the front a specific figure handle?
h = figure;
h2 = figure;
% bring figure with handle h to the front
figure(h);
How to bring to the front a known figure with a given name?
figure('Name','A cool figure'); % create a figure and assign a unique name
allfigs = findall(0,'Type', 'figure'); % finds the handles of figures
desiredHandle = findall(allfigs, 'Name', 'A cool figure'); % finds the handles of figure with the unique name
if numel(desiredHandle)==1 % make sure its not deleted or actually is a valid handle
figure(desiredHandle(1)); % brings to front
end

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by