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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
月光博客
月光博客
爱范儿
爱范儿
D
Docker
U
Unit 42
P
Proofpoint News Feed
I
InfoQ
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
V
Visual Studio Blog
IT之家
IT之家
Vercel News
Vercel News
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog

博客园 - Jrong

SIM卡卡号(ICCID)的含义 堪比Kinect的视频追踪算法 [转]软件项目的核心风险 [转]Android Google Calendar 日曆同步舊資料 .NET开源代码 .NET CF如何使Form全螢幕不顯示上方工作列(TaskBar) ManagedOpenGLES iPhoneBrowser 制表板式 [转]隐藏窗口右上角按钮 [转]解决VS2008 开发Windows Mobile 项目生成速度慢的问题 [转]在安装IIS时如果老提示无法复制convlog.exe、iisadmin.mfl等文件 [转]反射 [转]语音合成与识别技术在C#中的应用 [转]Creating Managed Today Screen Items 开源代码搜索利器Koders DirectShow.NET笔记 [转]在.NET CF2.0中调用DirectShow来处理视音频数据 [转]控件的设置模式行为ControlDesigner
VS2005里自定义控件设计时语法
Jrong · 2009-02-02 · via 博客园 - Jrong

首先声明下面代码只能用于桌面_NET,不适用于NETCF。

另外,内容很菜鸟,因为本人04年出道,自认仍然是菜鸟,老鸟略过。

控件写了不少,底层的上层的都有,但是一直都是只关注运行时效果,对新版设计时技术关注不多,习惯还停留于VS03的[CategoryAttribute("Behavior")]时代,今天花点时间写下,主要是给我同样的菜鸟们做做笔记。

不少源码都抄自MSDN,先坦白。。。

功能说明:只是一个相应鼠标操作的控件,设计时鼠标经过的时候,在控件上绘制一个带颜色的空心框。不同的只是设计时语法(VS05支持)。

Code

namespace ControlDesignerExample { // ExampleControlDesigner is an example control designer that // demonstrates basic functions of a ControlDesigner. [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] public class ExampleControlDesigner : System.Windows.Forms.Design.ControlDesigner {

Code

} // This example control demonstrates the ExampleControlDesigner. [DesignerAttribute(typeof(ExampleControlDesigner))] public class ExampleControl : System.Windows.Forms.UserControl {

Code

} }
以上源码在VS08中以_NET2.0实现。