Hopefully simple UIButtonGroup question
조회 수: 2 (최근 30일)
이전 댓글 표시
I created a UIButtonGroup and instantiated several radiobuttons. I'm using the SelectionChangeFcn callback properly for the radiobuttons and it works as expected except for an annoying issue.
When I click on a button, I want it to do something, which it does the first time I click that button. If that button is already selected and I want to repeat that action I should just click on that same button again...right? Wrong. Once that button is selected, I have to click on another button in the group then select the previously selected button. I basically want the callback to fire if I select the same button over and over again.
Any ideas? Thanks, Jason
댓글 수: 0
채택된 답변
Milos
2012년 11월 7일
After the code execution set off by pushing a radio button, add the code:
set(get(handles.uipanel1, 'SelectedObject'), 'Value', 0);
From a user interface point, it looks like you would be better served by plain old push buttons. Radio buttons in a panel operate like switches - once it's on, to come back to "on" state, it has to be in "off" state first.
댓글 수: 0
추가 답변 (1개)
Christine
2012년 11월 7일
You could try to set the Value-property of your button to 'Min' at the end of the routine it is running:
set(handel,'Value','Min');
Such it should be ready to be pressed again after it did his job.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!