惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
SecWiki News
SecWiki News
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
量子位
M
MIT News - Artificial intelligence
GbyAI
GbyAI
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
TaoSecurity Blog
TaoSecurity Blog
博客园 - 【当耐特】
H
Heimdal Security Blog
腾讯CDC
The Last Watchdog
The Last Watchdog
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
S
Schneier on Security
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
博客园 - 司徒正美
Recent Commits to openclaw:main
Recent Commits to openclaw:main
C
Cybersecurity and Infrastructure Security Agency CISA
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
Application and Cybersecurity Blog
Application and Cybersecurity Blog
F
Full Disclosure
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
T
Threatpost
月光博客
月光博客
A
Arctic Wolf
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
T
Troy Hunt's Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
D
DataBreaches.Net
O
OpenAI News
L
LINUX DO - 最新话题
宝玉的分享
宝玉的分享
小众软件
小众软件
V
Vulnerabilities – Threatpost
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
T
The Exploit Database - CXSecurity.com
Martin Fowler
Martin Fowler
美团技术团队
P
Privacy International News Feed

博客园 - jierry

ASP.NET2.0控件一览---标准控件(2) ASP.NET2.0控件一览---标准控件(1) 控件开发时两种JS嵌入资源方式的使用 - jierry - 博客园 T-SQL tips(1)临时表和表变量 Flash Control for ASP.NET 2.0-Include Flash movies in your aspx pages 为DataGrid创建自定义列控件(四) 为DataGrid创建自定义列控件(三) - jierry - 博客园 为DataGrid创建自定义列控件(二) 为DataGrid创建自定义列控件(一) (转)SQLServer和Oracle的常用函数对比 《Effective C#》读书笔记(4) 《Effective C#》读书笔记(3) 《Effective C#》读书笔记(2) 《Effective C#》读书笔记(1) 选择合适的数据控件 关于CodeBuild V3.0的一些想法 小工具:SQL存储过程解密修改工具 交叉表应用-成绩统计 现在提供第一版的存储过程生成器下载,欢迎大家试用
自带图层的链接控件(DKLinks 1.0.0.323 )
jierry · 2005-03-27 · via 博客园 - jierry

DKLinks 1.0.0.323

最近由于朋友的需要,特别写了这个小控件。
DKLinks继承自HyperLink,在此基础上增加了自带Div图层的效果,鼠标指向链接图层便出现。
图层中可以显示各种Html的效果,控件中增加了一个属性:Content,即指图层中要显示的内容。

效果1:
代码:

this.DKLinks1.Content = @"<TABLE cellSpacing=1 cellPadding=1 width=200 bgColor=#336699 border=0>
                                        <TBODY>
                                        
<TR bgColor=#3366cc>
                                            
<TD>22222222</TD>
                                            
<TD>22222222</TD>
                                            
<TD>4444444</TD></TR>
                                        
<TR bgColor=#c7d5e9>
                                            
<TD>1</TD>
                                            
<TD>&nbsp;</TD>
                                            
<TD>&nbsp;</TD></TR>
                                        
<TR bgColor=#c7d5e9>
                                            
<TD>2</TD>
                                            
<TD>&nbsp;</TD>
                                            
<TD>&nbsp;</TD></TR>
                                        
<TR bgColor=#c7d5e9>
                                            
<TD>4</TD>
                                            
<TD>&nbsp;</TD>
                                            
<TD>&nbsp;</TD></TR>
                                        
<TR bgColor=#c7d5e9>
                                            
<TD>8</TD>
                                            
<TD>&nbsp;</TD>
                                            
<TD>&nbsp;</TD></TR></TBODY></TABLE>";

效果2:
代码:

this.DKLinks2.Content = @"<img src='logo.jpg'>";

如果需要的朋友可以从这里下载:点击这里
使用方法:把Dll文件添加到工具箱中即可使用。
如有什么问题请提出,近期还有多个控件发布。