找回密码
 注册
关于网站域名变更的通知
查看: 365|回复: 3
打印 上一主题 下一主题

为啥GUI的callback函数不起作用了呢?

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2020-9-21 16:03 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

EDA365欢迎您登录!

您需要 登录 才可以下载或查看,没有帐号?注册

x
在做《Matlab面向对象编程》第七章取存款的GUI功能时,生成面板的时候没有报错,但是更改存取款数的值并按withdraw和deposit两个按钮没有反应,存款总数一直不变,感觉是callback函数没有起作用,能帮我看看哪里不对嘛?谢谢!+ t3 a9 T6 n# s; x+ _: F: X
  • balance = 500;%总金额
  • input = 0;%存取款数
  • hfig = figure('pos',[100,100,300,300]);
  • withdrawButton = uicontrol('parent',hfig,'string','withdraw',...
  •     'pos',[60 28 60 28]);
  • depositButton = uicontrol('parent',hfig,'string','deposit',...
  •     'pos',[180 28 60 28]);
  • inputBox = uicontrol('parent',hfig,'style','edit','pos',[60 85 180 28],...
  •     'string',num2str(input),'Tag','inputBox');
  • balanceBox = uicontrol('parent',hfig,'style','edit','pos',[180 142 60 28],...
  •     'string',num2str(balance),'Tag','balanceBox');
  • textBox = uicontrol('parent',hfig,'style','text','pos',[60 142 60 28],...
  •     'string','balance');
  • % set(withdrawButton,'callback',@(o,e)withdraw_callback(o,e));
  • % set(depositButton,'callback',@(o,e)deposit_callback(o,e));
  • withdrawButton.Callback=@withdraw_callback;
  • depositButton.Callback=@deposit_callback;! ~2 I4 O1 C; e

% K/ {  d5 i+ O1 U- B& d; y" ?: a$ G$ Z4 B, }/ @

! i7 A/ p1 a0 E/ K8 W" ]2 A
  • function withdraw_callback(o,e)
  •    hfig = get(o,'parent');%取款
  •    inputBox = findobj(hfig,'Tag','inputbox');
  •    input = str2double(get(inputBox,'string'));
  •    balanceBox = findobj(hfig,'Tag','balancebox');
  •    balance = str2double(get(balanceBox,'string'));
  •    balance = balance - input;
  •    set(balanceBox,'string',num2str(balance));
  • end
    ' N) w  A+ e' f' X7 S

/ w8 N8 k# ]/ y. e
5 F) p+ B5 l5 C+ \/ V
) N1 C! K- d) g8 f
  • function deposit_callback(o,e)
  •    hfig = get(o,'parent');%存款
  •    inputBox = findobj(hfig,'Tag','inputbox');
  •    input = str2double(get(inputBox,'string'));
  •    balanceBox = findobj(hfig,'Tag','balancebox');
  •    balance = str2double(get(balanceBox,'string'));
  •    balance = balance + input;
  •    set(balanceBox,'string',num2str(balance));
  • end* r- H! |* v* u2 f' r: d
3 E, @5 }% @* m! I5 O# G+ h1 \9 \/ V5 p

) E6 m. J7 v& a  a6 M# W0 C3 b# e* S/ i4 m: |- X5 R0 W- ]

该用户从未签到

2#
发表于 2020-9-21 16:58 | 只看该作者
看不完你的帖子
  • TA的每日心情

    2019-11-20 15:22
  • 签到天数: 2 天

    [LV.1]初来乍到

    3#
    发表于 2020-9-21 18:52 | 只看该作者
    withdraw_callback函数里面inputbox和balancebox中得b都小写了,改为大写的;deposit_callback函数中的也一样

    点评

    原来是这样,我也是刚刚发现的  详情 回复 发表于 2020-9-21 18:52

    该用户从未签到

    4#
     楼主| 发表于 2020-9-21 18:52 | 只看该作者
    mutougeda 发表于 2020-9-21 18:52, ]0 m: N8 L! |" E
    withdraw_callback函数里面inputbox和balancebox中得b都小写了,改为大写的;deposit_callback函数中的也一 ...

    , ?, [/ F% M3 p+ l7 _2 `4 h$ k原来是这样,我也是刚刚发现的
    . Y% c! C$ E4 r" x( p$ v% A8 g/ Q
    您需要登录后才可以回帖 登录 | 注册

    本版积分规则

    关闭

    推荐内容上一条 /1 下一条

    EDA365公众号

    关于我们|手机版|EDA365电子论坛网 ( 粤ICP备18020198号-1 )

    GMT+8, 2025-11-24 13:19 , Processed in 0.171875 second(s), 24 queries , Gzip On.

    深圳市墨知创新科技有限公司

    地址:深圳市南山区科技生态园2栋A座805 电话:19926409050

    快速回复 返回顶部 返回列表