Open UIGETFILE on 2nd monitor
2 次查看(过去 30 天)
显示 更早的评论
How can I open a uisetfile or uigetfile dialog on a 2nd monitor?
Unfortunately I assume the answer will depend on the Matlab release.
[EDITED]: A meta-message in this question:
The source codes of uigetfile are shipped with Matlab, but they are not useful to change feature of the dialog. In opposite to this, the source code of cellfun is not included in modern Matlab versions anymore. What a pity.
0 个评论
采纳的回答
Jette
2012-3-20
I (still) don't have an answer to this question - but possibly a hint which helps to create your own function:
I just managed to create my own replacement for uigetdir which is based on the Java JFileChooser. I used the answer of <http://stackoverflow.com/questions/6349410/using-uigetfile-instead-of-uigetdir-to-get-directories-in-matlab> as a starting point and found out that replacing
status = jchooser.showOpenDialog([]);
with
javaFrame = get(h_figure,'JavaFrame');
jfig = javaFrame.fFigureClient.getWindow;
status = jchooser.showOpenDialog(jfig);
opens the dialog in the center of h_figure. You cannot choose the exact position - but if you have a figure on the 2nd monitor also the dialog will show up there.
Obviously, this solution depends on the undocumented 'JavaFrame' property. I think you are aware of the consequences.
JFilesChooser can also be used with the option FILES_ONLY to choose files. There is also an option which decides if one or multiple files can be chosen. However, I have not managed yet to specify a FilterSpec to filter for certain extensions.
I have tried JFileChooser for R2010b under Windows XP and Windows 7. With Windows 7, I found that there is a (known) bug such that some buttons are not visible as they should. However, these features are also available via a context menu.
更多回答(1 个)
Dr. Seis
2012-3-20
Here are some comments within uigetputfile_helper.m that suggest user defined locations are no longer supported in later releases.
% First, check to see if the user entered in two integers as the last two
% arguments. If so, they entered in the obsoleted 'x' and 'y' location
% parameters, which will be ignored. Warn the user, but since this is
% not a fatal error, trim these arguments off and continue.
% Next, see if there are any property-value pairs. The only
% properties allowed are 'MultiSelection' and 'Location'.
% 'Location' is being obsoleted; we will warn the user and ignore
% the value. Trim off the property-value pairs so we are left with
% just convenience arguments.
Looks like in older releases you could just put in a pair of coordinates... but no longer. Oh well.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!