用户在matlab GUI中输入

时间:2011-05-27 10:46:06

标签: user-interface matlab user-input edit

嘿所有, 我正在构建一个gui,它有一个编辑框,等待用户写一个名字。

目前,我强制用户使用以下代码提供合法名称:

NewPNUName = get(handles.nameOfNewPNU, 'String');
if ( isempty(NewPNUName) ||...
        strcmp(NewPNUName,'Enter the name for the new PNU') )
    errordlg('Please enter a name for the new PNU.');
elseif (~ischar(NewPNUName(1)))
    errordlg('The PNU name should start with a letter.');
else
    handles.NewPNUName = NewPNUName;
end

if (~isempty(handles.NewPNUName))
% Do all the things needed if there is a legit name
end

如果用户没有写出合法的名称,它的作用就是什么。 我想要它做的是用一个编辑框弹出一个弹出窗口,要求用户再次输入想要的名字,直到它是一个合法的名字。

感谢您的帮助!

编辑: 关注@woodchips建议我将我的代码更正为以下内容:

NewPNUName = get(handles.nameOfNewPNU, 'String');
ValidName = ~isempty(NewPNUName) && isletter(NewPNUName(1)) &&...
    ~strcmp(NewPNUName,'Enter the name for the new PNU');
while (~ValidName)

    if ( isempty(NewPNUName) ||...
            strcmp(NewPNUName,'Enter the name for the new PNU') )
        NewPNUName = char(inputdlg('Please enter a name for the new PNU.','No name entered'));
    elseif (~isletter(NewPNUName(1)))
        NewPNUName = char(inputdlg('The name of the new PNU should start with a letter. Please enter a new name',...
            'Invalid name entered'));
    else
        allConds = 'are met'
    end

    ValidName = ~isempty(NewPNUName) && isletter(NewPNUName(1)) &&...
        ~strcmp(NewPNUName,'Enter the name for the new PNU');
end

1 个答案:

答案 0 :(得分:1)

因此,在代码块周围放置一个while循环,生成一个inputdlg框。将while循环上的条件设置为结果是有效的。