• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

【转】一个不错的Matlab的gui界面设计实例 (2008-10-03 15:47:30)matlab gui 界面 校 ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
一个不错的Matlab的gui界面设计实例 (2008-10-03 15:47:30)

%非常漂亮的日历,网上下载的,忘了出处了

function CalendarTable;
% calendar 日历
% Example:
% CalendarTable;

S=datestr(now);
[y,m,d]=datevec(S);
% d is day
% m is month
% y is year
DD={\'Sun\',\'Mon\',\'Tue\',\'Wed\',\'Thu\',\'Fri\',\'Sat\'};
close all
figure;
for k=1:7;
uicontrol(gcf,\'style\',\'text\',...
\'unit\',\'normalized\',\'position\',[0.02+k*0.1,0.55,0.08,0.06],...
\'BackgroundColor\',0.6*[1,1,1],\'ForegroundColor\',\'b\',...
\'String\',DD(k),\'fontsize\',16,\'fontname\',\'times new roman\');
end
h=1;
ss=\'b\';
qq=eomday(y,m);
for k=1:qq;
n=datenum(y,m,k);
[da,w] = weekday(n);
if k==d;
ss=\'r\';
end
uicontrol(gcf,\'style\',\'push\',...
\'unit\',\'normalized\',\'position\',[0.02+da*0.1,0.55-h*0.08,0.08,0.06],...
\'BackgroundColor\',0.6*[1,1,1],\'ForegroundColor\',ss,...
\'String\',num2str(k));
ss=\'b\';
if da==7;
h=h+1;
end
end
uicontrol(gcf,\'style\',\'push\',...
\'unit\',\'normalized\',\'position\',[0.6,0.66,0.12,0.08],...
\'BackgroundColor\',0.6*[1,1,1],\'ForegroundColor\',ss,...
\'String\',\'clock\',\'fontsize\',18,\'fontname\',\'times new roman\');
Tq=uicontrol(gcf,\'style\',\'push\',...
\'unit\',\'normalized\',\'position\',[0.74,0.66,0.17,0.08],...
\'BackgroundColor\',0.6*[1,1,1],\'ForegroundColor\',[0.1,0.9,0.9],...
\'fontsize\',18,\'fontname\',\'times new roman\');
sq=\'The calendar\';
uicontrol(gcf,\'style\',\'push\',...
\'unit\',\'normalized\',\'position\',[0.14,0.86,0.37,0.08],...
\'BackgroundColor\',0.6*[1,1,1],\'ForegroundColor\',[0.1,0.9,0.9],...
\'fontsize\',18,\'fontname\',\'times new roman\',\'string\',sq);
try
while 1
set(Tq,\'String\',datestr(now,13));
pause(1);
end
end


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Delphi调用外部程序详解(转)发布时间:2022-07-18
下一篇:
QQ聊天机器人 Delphi代码发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap