(App Designer) windowscrollWheelFcn for sliders and knobs

4 visualizaciones (últimos 30 días)
Ledoux Laboratory
Ledoux Laboratory el 31 de Jul. de 2018
I just started using the App Designer for MATLAB and was wondering if there was a mouse wheel scroll function similar to one for GUI's. Specifically to change the values of a knob or slider component. Here's a preview of my code:
function CutoffFrequencyHzSliderValueChanging(app, event)
changingValue = event.Value;
app.EditField.Value = changingValue;
selectedButton = app.TrackingTypeButtonGroup.SelectedObject;
track = selectedButton.Text;
value = app.DropDown.Value;
% set(app.CutoffFrequencyHzSlider,'windowscrollWheelFcn',{@scrollfunc,gca})
% b = uicontrol('Style','WindowScrollWheel','Callback',{@eindoedscrollwheel_callback,gcf});
clear leg
file = app.(value);
data = file.(track);
.......
The 2 lines that are commented out are 2 separate attempts at adding scroll wheel functionality to my slider component.

Respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos


Versión

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by