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;
                }

            }
     
  • 相关阅读:
    BOM
    CSS 定位与浮动
    轮播
    跨域
    Flex-弹性布局
    vue.js开发环境搭建以及创建一个vue实例
    js闭包
    git的一些基本命令
    不定宽块状元素居中方法
    git中常用命令小结
  • 原文地址:https://www.cnblogs.com/alice/p/189034.html
Copyright © 2011-2022 走看看