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

推荐订阅源

月光博客
月光博客
雷峰网
雷峰网
S
SegmentFault 最新的问题
博客园 - 【当耐特】
博客园_首页
量子位
爱范儿
爱范儿
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
V
V2EX
美团技术团队
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

博客园 - 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实现。