Code for action when ui toggle button is pressed
21 次查看(过去 30 天)
显示 更早的评论
I have a uibuttongroup in a ui figure. It is only one button in the group. I am trying to use the SelectionChengedFcn to activate some code once the button is pressed by the pointer. In this example, I would like the string "test" to be displayed. But nothing happens. What do I need to add? As I understand it the value of my button is set to 1 from the beginning since there is only 1 button. Possibly that is a part of the problem. Also I am a bit uncertain about the input arguments to the bselection function. Here is my code after the declarations of the parameters for the positions:
fig = uifigure('Name',''test')
bg = uibuttongroup(fig,'Position',[x_bg 0.1*h w_bg h_bg],'SelectionChangedFcn',@bselection);
tb1 = uitogglebutton(bg,'Position',[x_tb1 y_tb1 w_tb1 h_tb1],'Text','Calc');
function bselection(source,event)
disp('test')
end
Thanks.
0 个评论
采纳的回答
Jorg Woehl
2021-3-8
编辑:Jorg Woehl
2021-3-8
Yes, that's indeed the problem - the selected button never changes because you only have one button in the button group, so the callback function is never triggered. If you add another button to your toggle button group, your code will work fine.
If you are only dealing with a single button, why don't you just use a state button?
As for the input arguments source and event to the callback function, you don't need to worry about them. What is important for you is only the value of selectedButton = app.ButtonGroup.SelectedObject in the case of the toggle button group, or value = app.Button.Value in the case of the state button, since your callback action will (normally) depend on that value.
2 个评论
Jorg Woehl
2021-3-8
编辑:Jorg Woehl
2021-3-8
The function definitions in AppDesigner apps shouldn't be changed by the user, and there is no need to do that. You can operate on variables inside callback functions in two ways:
- Define the variable test inside the callback function and use it there. This, however, means that test is reset to the same initial value every time the callback is executed.
- Define a variable test outside the function but inside the app, which is done using public or private properties; see Share Data Within App Designer Apps for how to do this. You can then access the variable inside your callback function by calling it as app.test.
Happy coding!
更多回答(1 个)
Gurra
2021-3-9
1 个评论
Jorg Woehl
2021-3-10
Hi Gurra,
Yes, this works fine because you are creating your GUI programmatically - that was something I missed when I answered your original question.
If you create your GUI using AppDesigner, which is really neat (and the way to go for more complex user interfaces), you can manage variables in the way that I have described.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!