2020-03-17 MATLAB App Designer——密碼框功能的實(shí)現(xiàn)
1、字體設(shè)置——將 uieditfield 的'FontName'屬性設(shè)置為'Symbol'
輸入的密碼為:xxxsafdaqefs12fasda

引用:https://blog.csdn.net/shitao99/article/details/85938472
評(píng)價(jià):效果不好,數(shù)字無(wú)法隱藏
2、函數(shù)設(shè)計(jì)——“KeyPressFcn”函數(shù)與userdata
輸入密碼時(shí),輸入的字符被星號(hào)代替,但是會(huì)發(fā)現(xiàn)光標(biāo)位于最前面
代碼見(jiàn)?https://blog.csdn.net/shitao99/article/details/85938472
評(píng)價(jià):光標(biāo)在最前面,難用
3、函數(shù)設(shè)計(jì)——'ValueChangedFcn'函數(shù)
對(duì)uieditfield的ValueChangedFcn設(shè)置回調(diào) @MailboxPasswordChangedFcn
首先新建一個(gè)密碼框
% app.Mailbox.Password 為公共變量用于存儲(chǔ)密碼的?
% 新建一個(gè)密碼框,并將句柄賦值給app.Object.Password ? ? ? ? ? ? ? ? ??? ? ? ? ????
app.Object.Password = uieditfield(Mailbox_Sender,...?
? ? ? ? ? ? ? ? ? ? ? ? 'Value',app.Mailbox.Password,... ?
? ? ? ? ? ? ? ? ? ?? ? ?'HorizontalAlignment','left',...?
?? ? ? ? ? ? ? ? ? ? ? ??'Editable','on','Enable','on',...??
? ? ? ? ? ? ? ? ? ? ? ??'Position',Position_editfield,... ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? ? ? ? ? ? ? ? ? ? ? ?? ? ? ? ? ? ? ? ???'ValueChangedFcn',@MailboxPasswordChangedFcn); ?% 設(shè)置值變化后的回調(diào)函數(shù)
設(shè)置回調(diào)函數(shù)
? ? ? ? ?
?function?MailboxPasswordChangedFcn(source,event)?? ? ? ? ? ? ? ?%?app.Mailbox.Password?為公共變量用于存儲(chǔ)密碼的? ? ? ? ? ? ? ??TEMP?=?app.Object.Password.Value;?
?if?~contains(TEMP,'*')?
? ?? ?app.Mailbox.Password?=?TEMP;
else?
? ???Id?=?1:l
? ? ?ength(TEMP);
? ???Id(:,strfind(TEMP,'*'))=[];??
? ? ?app.Mailbox.Password(Id)=TEMP(Id);??
end?
if?~isempty(TEMP)??
? ? ?app.Object.Password.Value(1:length(TEMP))?=?'*';?? ? ? ? ??
end
效果展示
3.1 密碼輸入過(guò)程中

3.2?密碼輸入完成后

4. 函數(shù)設(shè)計(jì)——'ValueChangingFcn'函數(shù)
同方法3的代碼,但在運(yùn)行的時(shí)候存在一個(gè)問(wèn)題,就是最后一次輸入的字符無(wú)法替換成星號(hào)