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

            }
     
  • 相关阅读:
    10.28
    10.25
    10.21
    移动第七次作业
    移动第六次作业
    移动第五次作业
    移动第四次作业
    移动第3次作业
    移动第二次作业
    移动第一次作业
  • 原文地址:https://www.cnblogs.com/alice/p/189034.html
Copyright © 2011-2022 走看看