Can't deactivate slider
9 次查看(过去 30 天)
显示 更早的评论
I have a callback (not the slider) in which until it's complete I don't want the user using the slider. So, in that callback I disabled the slider (i.e.'enable', 'off'). The property editor shows that to be the case. However, if I click on the slider the enable property turns back on. I can bypass the logic in the slider callback (that's a different callback) but even so the slider indicator (the thing that moves on the slider to show you where you are) still moves.
So, is there anyway to stop/disable user input from triggering the slider to begin with?
0 个评论
回答(2 个)
Image Analyst
2018-8-19
Well you can hide it. Try setting the visible property to off
handles.slider1.Visible = 'off';
2 个评论
Image Analyst
2018-8-19
Andrew's "Answer" moved here since it's not an answer to his original question, but actually a reply to me:
First, is that any different than
set(handles.slider1, 'visible', 'off')?
I don't want it to "disappear" which is what I think that would do (right?). That would make the GUI look kludgy I think. What I'm looking for is something that prevents it from getting user input (i.e. mouse clicks) but not affect its look or ability to be manipulated programmatically. Long story short, I want to move the sliders indicator programmatically in the aforementioned call back routine (the non-slider one that I tried deactivating the slider in)
Thx
Image Analyst
2018-8-19
Andrew, you're using the old fashioned way. I'm using the modern OOP way. They're equivalent.
See my other answer for a fully functioning demo.
Image Analyst
2018-8-19
Andrew, try the attached demo. It works as expected.
2 个评论
Image Analyst
2018-8-21
I do not change the slider value by programmatic control (code). I do let you change it by clicking on it with the mouse (mouse control). Then the push buttons enable or disable the slider plus the text above the slider.
I'm glad it helped you figure out that the problem lied with some other function. You could at least vote for the solution if you don't consider that it helped enough to be an answer.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Install Products 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!