开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 1525|回复: 3
收起左侧

[闲聊] 网页图标设定(多标签)

[复制链接]
结帖率:33% (3/9)
发表于 2013-12-27 12:54:13 | 显示全部楼层 |阅读模式   四川省成都市

  1.         public:
  2.                 /// <summary>
  3.                 /// 浏览器图标调整
  4.                 /// </summary>
  5.                 System::Void ReviseHTMLICON()
  6.                 {
  7.                         try
  8.                         {
  9.                                 HTMLICON^ tmp ;
  10.                                 String^str=GetFaviconURL(this->URL->Text);
  11.                                 for(int i=0;i<HTMLIcon->Count;i++)
  12.                                 {
  13.                                         tmp = (HTMLICON^)HTMLIcon[i];
  14.                                         if(tmp->URL==str)
  15.                                         {
  16.                                                 if(this->WebIco->Image->Flags!=Image::FromStream(tmp->ICON)->Flags);
  17.                                                 {
  18.                                                         this->WebIco->Image=Image::FromStream(tmp->ICON);
  19.                                                         this->WebIco->Refresh();
  20.                                                         break;
  21.                                                 }
  22.                                         }
  23.                                 }
  24.                         }
  25.                         catch(...)
  26.                         {
  27.                                 this->WebIco->Image=Image::FromFile(".\\img\\ico.ico");
  28.                                 this->WebIco->Refresh();
  29.                                 return;
  30.                         }
  31.                 }
复制代码

  1.         public:
  2.                 /// <summary>
  3.                 /// 取网页图标地址
  4.                 /// </summary>
  5.                 System::String^ GetFaviconURL(System::String^ loacURL)
  6.                 {
  7.                         if (!System::IO::File::Exists(loacURL))
  8.                         {
  9.                                 String^ tmp;
  10.                                 array<System::String^>^str=loacURL->Split('/');
  11.                                 if((str)->Length>2)
  12.                                 {
  13.                                         tmp = str[0]->Trim() + "//";
  14.                                         tmp = tmp +  str [1]->Trim();
  15.                                         tmp = tmp + str[2]->Trim() +"/favicon.ico";
  16.                                 }
  17.                                 return tmp;
  18.                         }
  19.                         return NULL;
  20.                 }
复制代码

  1.         public:
  2.                 /// <summary>
  3.                 /// 下载网页图标
  4.                 /// </summary>
  5.                 System::Void DownloadHTMLIcon()
  6.                 {
  7.                         try
  8.                         {
  9.                                 if (IE->Count>0)
  10.                                 {
  11.                                         Int32 Count=0;
  12.                                         String^ c_url=GetFaviconURL(IE[tabControl1->SelectedIndex]->LocationURL);
  13.                                         for (Int32 i=0;i<HTMLIcon->Count;i++)
  14.                                         {
  15.                                                 HTMLICON^ icon = (HTMLICON^)HTMLIcon[i];
  16.                                                 if(icon->URL==c_url)
  17.                                                 {
  18.                                                         Count++;
  19.                                                 }
  20.                                         }
  21.                                         if(Count<=0)
  22.                                         {
  23.                                                 HTMLICON^ICO=gcnew HTMLICON;
  24.                                                 ICO->URL=c_url;
  25.                                                 if (InternetCheckConnectionA(c_url,1,0))
  26.                                                 {
  27.                                                         ICO->ICON = gcnew System::IO::MemoryStream((gcnew System::Net::WebClient)->DownloadData(c_url));
  28.                                                         HTMLIcon->Add(ICO);
  29.                                                         this->WebIco->Image=gcnew Bitmap(ICO->ICON);
  30.                                                 }
  31.                                                 else
  32.                                                 {
  33.                                                         ICO->ICON = gcnew System::IO::MemoryStream(System::IO::File::ReadAllBytes(".\\img\\ico.ico"));
  34.                                                         HTMLIcon->Add(ICO);
  35.                                                         this->WebIco->Image=gcnew Bitmap(ICO->ICON);
  36.                                                 }
  37.                                                 this->WebIco->Refresh();
  38.                                         }
  39.                                 }
  40.                         }
  41.                         catch(...)
  42.                         {
  43.                                 Int32 Count=0;
  44.                                 String^ c_url=GetFaviconURL(IE[tabControl1->SelectedIndex]->LocationURL);
  45.                                 for (Int32 i=0;i<HTMLIcon->Count;i++)
  46.                                 {
  47.                                         HTMLICON^ icon = (HTMLICON^)HTMLIcon[i];
  48.                                         if(icon->URL==c_url)
  49.                                         {
  50.                                                 Count++;
  51.                                         }
  52.                                 }
  53.                                 if(Count<=0)
  54.                                 {
  55.                                         HTMLICON^ICO=gcnew HTMLICON;
  56.                                         ICO->URL=c_url;
  57.                                         ICO->ICON = gcnew System::IO::MemoryStream(System::IO::File::ReadAllBytes(".\\img\\ico.ico"));
  58.                                         HTMLIcon->Add(ICO);
  59.                                         this->WebIco->Image=gcnew Bitmap(ICO->ICON);
  60.                                         this->WebIco->Refresh();
  61.                                 }
  62.                         }
  63.                         ReviseHTMLICON();
  64.                 }
复制代码
  1.         public:
  2.                 /// <summary>
  3.                 /// 网页图标
  4.                 /// </summary>
  5.                 value struct HTMLICON
  6.                 {
  7.                         System::String^ URL;
  8.                         System::IO::MemoryStream^ ICON;
  9.                 };
复制代码

点评

提示: typedef 是什么语言的关键字 不懂找度娘   四川省成都市  发表于 2013-12-27 12:57
猜猜这是什么语言。。。。   四川省成都市  发表于 2013-12-27 12:55
结帖率:100% (3/3)
发表于 2013-12-27 12:58:18 | 显示全部楼层   福建省泉州市
沙发。。。。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表