cpetco_andy

导航

2011年12月20日

学习C#:Attribute与Property 【http://developer.51cto.com/art/200908/141545.htm】

摘要: 一.什么是Attribute先看下面的三段代码:1.自定义Attribute类:VersionAttribute[AttributeUsage(AttributeTargets.Class)] publicclassVersionAttribute:Attribute { publicstringName{get;set;} publicstringDate{get;set;} publicstringDescribtion{get;set;} }2.使用自定义Attribute的Class:[Version(Name="hyddd",Date="2009-07- 阅读全文

posted @ 2011-12-20 15:24 cpetco_andy 阅读(407) 评论(0) 推荐(0) 编辑

2011-12-20 C#拖放技术相关方法和事件

摘要: 1.方法实现拖放效果时,C#中提供了一个系统方法DoDragDrop方法,用于实现开始拖放操作,该方法由Control类所定义,由于控件均直接或是间接派生于Control类,因此开发人员可以在任何可视化组件中调用DoDragDrop方法。DoDragDrop方法使用语法如下:public DragDropEffects DoDragDrop ( Object data,DragDropEffects allowedEffects)data:用户所要拖动的数据内容。必须将所要拖动的内容传入到这个方法的第一个参数位置。allowedEffects:DragDropEffects枚举值之一,此类型包 阅读全文

posted @ 2011-12-20 11:50 cpetco_andy 阅读(211) 评论(0) 推荐(0) 编辑