我想通过一个简单的上一个/下一个切片 GUI 查看我正在检查的切片的编号。我存储了正在查看的切片的编号,handles.index
并且可以通过上一个、下一个按钮对其进行更新。
我在编辑文本回调函数上写了以下内容:
function edit2_Callback(hObject, eventdata, handles)
handles.output=hObject
set (edit2.handles,'Tag', handles.index); %also tried with the 'String' property and failed
代码运行时,属性不会更新。它仍然是“编辑文本”,这里有什么问题?