zoukankan      html  css  js  c++  java
  • propertyGrid实现选项(原创)

    Draw Dorp-Down propertyGrid

    [TypeConverter(typeof(backgroundRepeatConverter)),
                DescriptionAttribute(
    "description"),
                CategoryAttribute(
    "行为")]
                
    public string backgroundRepeat
                
    {
                    
    get
                    
    {
                            
    if(e.style.backgroundRepeat==null)return "";
                            
    return e.style.backgroundRepeat;
                    
                    }

                    
    set
                    
    {
                        e.style.backgroundRepeat
    =value;
                    }

                }


    public class backgroundRepeatConverter: StringConverter
            
    {  
                
    public override StandardValuesCollection
                    GetStandardValues(ITypeDescriptorContext context) 
                
    {
                    
    return new StandardValuesCollection(new string[]{"repeat"
                                                                        
    "repeat-x"
                                                                        
    "repeat-y",
                    
    "no-repeat"}
    );
                }

                
    public override bool GetStandardValuesSupported(
                    ITypeDescriptorContext context) 
                
    {
                    
    return true;
                }

                
    public override bool GetStandardValuesExclusive(
                    ITypeDescriptorContext context) 
                
    {
                    
    return true;
                }

            }
     
  • 相关阅读:
    awk学习
    Redis快速入门
    Redis源码研究—基础知识
    稳定模式在RESTful架构中的应用
    解析Google集群资源管理系统Omega
    在Ubuntu 14.04 64bit上安装百度云Linux客户端BCloud
    在Ubuntu 14.04 64bit上安装Markdown和绘图软件Haroopad
    在Ubuntu 14.04 64bit上安装网易云音乐Linux版本(最新官方版)
    各数据库连接maven配置
    maven POM.xml 标签详解
  • 原文地址:https://www.cnblogs.com/alice/p/189034.html
Copyright © 2011-2022 走看看