⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_toggle.m

📁 Matlab源程序
💻 M
字号:
function test_toggle()
% This function creates a toggle button and a text field.
% The the associated callback will cause the text 
% field to display the state of the toggle button.

h0 = figure('Color',[0.8 0.8 0.8], ...
   'Name','Test Toggle Button', ...
   'NumberTitle','off', ...
   'Position',[300 300 257 136], ...
   'Tag','Fig1');
h1 = uicontrol('Parent',h0, ...
   'Units','points', ...
   'BackgroundColor',[0.8 0.8 0.8], ...
   'Position',[45 45 70 17], ...
   'String','Off', ...
   'Style','text', ...
   'Tag','Label1');
h1 = uicontrol('Parent',h0, ...
   'Units','points', ...
   'Callback','test_toggle_callback', ...
   'Position',[45 25 70 17], ...
   'String','Toggle Button', ...
   'Style','togglebutton', ...
   'Value',0, ...
   'Tag','Toggle1');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -