How to add Slider properties with in the app designer?
13 ビュー (過去 30 日間)
古いコメントを表示
I have created GUI, in that i wanted to write conditions based on the Slider min & slider Max values. But I tried to create
app.slider=uicontrol('Parent',app.UIFigure...
'Units','Normalized',...
'Position',[0.8 0.1 0.1 0.8],...
'Style','Slider',...
'BackgroundColor',[1 1 1],...
'Min',1,'Max',N_images,'Value',1,...
'Callback',@app.SliderValueChanging);
I am getting errors with. Can any one help me with this?
0 件のコメント
回答 (1 件)
Simon Chan
2022 年 6 月 15 日
It uses Limits rather than Min, Max to define the limits.
2 件のコメント
Simon Chan
2022 年 6 月 15 日
sliderLimit = get(h.slider,'Limits') if sliderValue < sliderLimit(2) ………………
参考
カテゴリ
Help Center および File Exchange で Special Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!