Exemplo n.º 1
0
        public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, Attribute[] attributes)
        {
            if (context.PropertyDescriptor == null)
            {
                return(null);
            }

            System.ComponentModel.DefaultValueAttribute dva = context.PropertyDescriptor.Attributes.Get(typeof(System.ComponentModel.DefaultValueAttribute)) as System.ComponentModel.DefaultValueAttribute;

            System.ComponentModel.PropertyDescriptorCollection pdc = new System.ComponentModel.PropertyDescriptorCollection(null, false);
            foreach (DynStandardValue sv in GetAllPossibleValues(context))
            {
                if (!sv.Visible)
                {
                    continue;
                }

                UpdateStringFromResource(context, sv);
                var epd = new EnumChildPropertyDescriptor(context, sv.Value.ToString(), sv.Value);
                epd.Attributes.Add(new System.ComponentModel.ReadOnlyAttribute(!sv.Enabled), true);
                epd.Attributes.Add(new System.ComponentModel.DescriptionAttribute(sv.Description), true);
                epd.Attributes.Add(new System.ComponentModel.DisplayNameAttribute(sv.DisplayName), true);
                epd.Attributes.Add(new System.ComponentModel.BrowsableAttribute(sv.Visible), true);

                // setup the default value;
                if (dva != null)
                {
                    bool bHasBit = EnumUtil.IsBitsOn(dva.Value, sv.Value);
                    epd.DefaultValue = bHasBit;
                }
                pdc.Add(epd);
            }
            return(pdc);
        }
Exemplo n.º 2
0
        // Method implemented to expose Volume and PayLoad properties conditionally, depending on TypeOfCar
        public System.ComponentModel.PropertyDescriptorCollection GetProperties()
        {
            var props = new System.ComponentModel.PropertyDescriptorCollection(null);

            for (int i = 0; i < Properties.Count; i++)
            {
                var item = Properties[i];
                props.Add(new CustomPropertyDescriptor(ref item, item.EditorType == null ? null : new Attribute[] { new System.ComponentModel.EditorAttribute(item.EditorType, item.EditorType) }));
            }

            return(props);
        }
Exemplo n.º 3
0
 System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties()
 {
     // Create a new collection object PropertyDescriptorCollection
     System.ComponentModel.PropertyDescriptorCollection pds = new System.ComponentModel.PropertyDescriptorCollection(null);
     // Iterate the list of parameters
     for (int i = 0; i < this.Items.Count; i++)
     {
         // For each parameter create a property descriptor
         // and add it to the PropertyDescriptorCollection instance
         ParameterCollectionPropertyDescriptor pd = new ParameterCollectionPropertyDescriptor(this, i);
         pds.Add(pd);
     }
     return(pds);
 }
        public System.ComponentModel.PropertyDescriptorCollection GetProperties()
        {
            // Create a new collection object PropertyDescriptorCollection
            System.ComponentModel.PropertyDescriptorCollection pds = new System.ComponentModel.PropertyDescriptorCollection(null);

            // Iterate the list of employees
            for (short i = 0; i < eaCollection.Count; ++i)
            {
                // For each Element create a property descriptor
                // and add it to the PropertyDescriptorCollection instance
                BrowsableCollectionPropertyDescriptor <T> pd =
                    new BrowsableCollectionPropertyDescriptor <T>(this, i);
                pds.Add(pd);
            }
            return(pds);
        }
Exemplo n.º 5
0
        private CustomTypeDescriptor(Type type, bool isAnonymousClass, MemberInfo[] members, string[] names)
        {
            if (type == null) 
                throw new ArgumentNullException("type");

            //
            // No members supplied? Get all public, instance-level fields and 
            // properties of the type that are not marked with the JsonIgnore
            // attribute.
            //
            
            if (members == null)
            {
                const BindingFlags bindings = BindingFlags.Instance | BindingFlags.Public;
                FieldInfo[] fields = type.GetFields(bindings);
                PropertyInfo[] properties = type.GetProperties(bindings);
                
                //
                // Filter out members marked with JsonIgnore attribute.
                //
                
                ArrayList memberList = new ArrayList(fields.Length + properties.Length);
                memberList.AddRange(fields);
                memberList.AddRange(properties);

                for (int i = 0; i < memberList.Count; i++)
                {
                    MemberInfo member = (MemberInfo) memberList[i];
                    
                    if (!member.IsDefined(typeof(JsonIgnoreAttribute), true))
                        continue;
                    
                    memberList.RemoveAt(i--);
                }
                
                members = (MemberInfo[]) memberList.ToArray(typeof(MemberInfo));
            }
                        
            PropertyDescriptorCollection logicalProperties = new PropertyDescriptorCollection(null);
            
            int index = 0;
            
            foreach (MemberInfo member in members)
            {
                FieldInfo field = member as FieldInfo;
                string name = names != null && index < names.Length ? names[index] : null;
                TypeMemberDescriptor descriptor = null;

                if (field != null)
                {
                    //
                    // Add public fields that are not read-only and not 
                    // constant literals.
                    //
            
                    if (field.DeclaringType != type && field.ReflectedType != type)
                        throw new ArgumentException(null, "members");
                
                    if (!field.IsInitOnly && !field.IsLiteral)
                        descriptor = new TypeFieldDescriptor(field, name);
                }
                else
                {
                    PropertyInfo property = member as PropertyInfo;
                    
                    if (property == null)
                        throw new ArgumentException(null, "members");
                    
                    //
                    // Add public properties that can be read and modified.
                    // If property is read-only yet has the JsonExport 
                    // attribute applied then include it anyhow (assuming
                    // that the type author probably has customizations
                    // that know how to deal with the sceanrio more 
                    // accurately). What's more, if the type is anonymous 
                    // then the rule that the proerty must be writeable is
                    // also bypassed.
                    //

                    if (property.DeclaringType != type && property.ReflectedType != type)
                        throw new ArgumentException(null, "members");

                    if ((property.CanRead) &&
                        (isAnonymousClass || property.CanWrite || property.IsDefined(typeof(JsonExportAttribute), true)) &&
                        property.GetIndexParameters().Length == 0)
                    {
                        //
                        // Properties of an anonymous class will always use 
                        // their original property name so that no 
                        // transformation (like auto camel-casing) is 
                        // applied. The rationale for the exception here is
                        // that since the user does not have a chance to
                        // decorate properties of an anonymous class with
                        // attributes, there is no way an overriding policy
                        // can be implemented.
                        //

                        descriptor = new TypePropertyDescriptor(property, 
                            isAnonymousClass ? Mask.EmptyString(name, property.Name) : name);
                    }
                }
                
                if (descriptor != null)
                {
                    descriptor.ApplyCustomizations();
                    logicalProperties.Add(descriptor);
                }
                
                index++;
            }
                
            _properties = logicalProperties;
        }
        public CustomTypeDescriptor(Type type, MemberInfo[] members, string[] names)
        {
            if (type == null)
            {
                throw new ArgumentNullException("type");
            }

            //
            // No members supplied? Get all public, instance-level fields and
            // properties of the type that are not marked with the JsonIgnore
            // attribute.
            //

            if (members == null)
            {
                const BindingFlags bindings   = BindingFlags.Instance | BindingFlags.Public;
                FieldInfo[]        fields     = type.GetFields(bindings);
                PropertyInfo[]     properties = type.GetProperties(bindings);

                //
                // Filter out members marked with JsonIgnore attribute.
                //

                ArrayList memberList = new ArrayList(fields.Length + properties.Length);
                memberList.AddRange(fields);
                memberList.AddRange(properties);

                for (int i = 0; i < memberList.Count; i++)
                {
                    MemberInfo member = (MemberInfo)memberList[i];

                    if (!member.IsDefined(typeof(JsonIgnoreAttribute), true))
                    {
                        continue;
                    }

                    memberList.RemoveAt(i--);
                }

                members = (MemberInfo[])memberList.ToArray(typeof(MemberInfo));
            }

            PropertyDescriptorCollection logicalProperties = new PropertyDescriptorCollection(null);

            int index = 0;

            foreach (MemberInfo member in members)
            {
                FieldInfo field = member as FieldInfo;
                string    name  = names != null && index < names.Length ? names[index] : null;

                if (field != null)
                {
                    //
                    // Add public fields that are not read-only and not
                    // constant literals.
                    //

                    if (field.DeclaringType != type && field.ReflectedType != type)
                    {
                        throw new ArgumentException("fields");
                    }

                    if (!field.IsInitOnly && !field.IsLiteral)
                    {
                        logicalProperties.Add(new TypeFieldDescriptor(field, name));
                    }
                }
                else
                {
                    PropertyInfo property = member as PropertyInfo;

                    if (property != null)
                    {
                        //
                        // Add public properties that can be read and modified.
                        //

                        if (property.DeclaringType != type && property.ReflectedType != type)
                        {
                            throw new ArgumentException("properties");
                        }

                        if (property.CanRead && property.CanWrite)
                        {
                            logicalProperties.Add(new TypePropertyDescriptor(property, name));
                        }
                    }
                    else
                    {
                        throw new ArgumentException("members");
                    }
                }

                index++;
            }

            _properties = logicalProperties;
        }
Exemplo n.º 7
0
        public CustomTypeDescriptor(Type type, MemberInfo[] members, string[] names)
        {
            if (type == null)
                throw new ArgumentNullException("type");

            //
            // No members supplied? Get all public, instance-level fields and
            // properties of the type that are not marked with the JsonIgnore
            // attribute.
            //

            if (members == null)
            {
                const BindingFlags bindings = BindingFlags.Instance | BindingFlags.Public;
                FieldInfo[] fields = type.GetFields(bindings);
                PropertyInfo[] properties = type.GetProperties(bindings);

                //
                // Filter out members marked with JsonIgnore attribute.
                //

                ArrayList memberList = new ArrayList(fields.Length + properties.Length);
                memberList.AddRange(fields);
                memberList.AddRange(properties);

                for (int i = 0; i < memberList.Count; i++)
                {
                    MemberInfo member = (MemberInfo) memberList[i];

                    if (!member.IsDefined(typeof(JsonIgnoreAttribute), true))
                        continue;

                    memberList.RemoveAt(i--);
                }

                members = (MemberInfo[]) memberList.ToArray(typeof(MemberInfo));
            }

            PropertyDescriptorCollection logicalProperties = new PropertyDescriptorCollection(null);

            int index = 0;

            foreach (MemberInfo member in members)
            {
                FieldInfo field = member as FieldInfo;
                string name = names != null && index < names.Length ? names[index] : null;

                if (field != null)
                {
                    //
                    // Add public fields that are not read-only and not
                    // constant literals.
                    //

                    if (field.DeclaringType != type && field.ReflectedType != type)
                        throw new ArgumentException("fields");

                    if (!field.IsInitOnly && !field.IsLiteral)
                        logicalProperties.Add(new TypeFieldDescriptor(field, name));
                }
                else
                {
                    PropertyInfo property = member as PropertyInfo;

                    if (property != null)
                    {
                        //
                        // Add public properties that can be read and modified.
                        //

                        if (property.DeclaringType != type && property.ReflectedType != type)
                            throw new ArgumentException("properties");

                        if (property.CanRead && property.CanWrite)
                            logicalProperties.Add(new TypePropertyDescriptor(property, name));
                    }
                    else
                    {
                        throw new ArgumentException("members");
                    }
                }

                index++;
            }

            _properties = logicalProperties;
        }
Exemplo n.º 8
0
        private CustomTypeDescriptor(Type type, bool isAnonymousClass, MemberInfo[] members, string[] names)
        {
            if (type == null)
            {
                throw new ArgumentNullException("type");
            }

            //
            // No members supplied? Get all public, instance-level fields and
            // properties of the type that are not marked with the JsonIgnore
            // attribute.
            //

            if (members == null)
            {
                const BindingFlags bindings   = BindingFlags.Instance | BindingFlags.Public;
                FieldInfo[]        fields     = type.GetFields(bindings);
                PropertyInfo[]     properties = type.GetProperties(bindings);

                //
                // Filter out members marked with JsonIgnore attribute.
                //

                ArrayList memberList = new ArrayList(fields.Length + properties.Length);
                memberList.AddRange(fields);
                memberList.AddRange(properties);

                for (int i = 0; i < memberList.Count; i++)
                {
                    MemberInfo member = (MemberInfo)memberList[i];

                    if (!member.IsDefined(typeof(JsonIgnoreAttribute), true))
                    {
                        continue;
                    }

                    memberList.RemoveAt(i--);
                }

                members = (MemberInfo[])memberList.ToArray(typeof(MemberInfo));
            }

            PropertyDescriptorCollection logicalProperties = new PropertyDescriptorCollection(null);

            int index = 0;

            foreach (MemberInfo member in members)
            {
                FieldInfo            field      = member as FieldInfo;
                string               name       = names != null && index < names.Length ? names[index] : null;
                TypeMemberDescriptor descriptor = null;

                if (field != null)
                {
                    //
                    // Add public fields that are not read-only and not
                    // constant literals.
                    //

                    if (field.DeclaringType != type && field.ReflectedType != type)
                    {
                        throw new ArgumentException(null, "members");
                    }

                    if (!field.IsInitOnly && !field.IsLiteral)
                    {
                        descriptor = new TypeFieldDescriptor(field, name);
                    }
                }
                else
                {
                    PropertyInfo property = member as PropertyInfo;

                    if (property == null)
                    {
                        throw new ArgumentException(null, "members");
                    }

                    //
                    // Add public properties that can be read and modified.
                    // If property is read-only yet has the JsonExport
                    // attribute applied then include it anyhow (assuming
                    // that the type author probably has customizations
                    // that know how to deal with the sceanrio more
                    // accurately). What's more, if the type is anonymous
                    // then the rule that the proerty must be writeable is
                    // also bypassed.
                    //

                    if (property.DeclaringType != type && property.ReflectedType != type)
                    {
                        throw new ArgumentException(null, "members");
                    }

                    if ((property.CanRead) &&
                        (isAnonymousClass || property.CanWrite || property.IsDefined(typeof(JsonExportAttribute), true)) &&
                        property.GetIndexParameters().Length == 0)
                    {
                        //
                        // Properties of an anonymous class will always use
                        // their original property name so that no
                        // transformation (like auto camel-casing) is
                        // applied. The rationale for the exception here is
                        // that since the user does not have a chance to
                        // decorate properties of an anonymous class with
                        // attributes, there is no way an overriding policy
                        // can be implemented.
                        //

                        descriptor = new TypePropertyDescriptor(property,
                                                                isAnonymousClass ? Mask.EmptyString(name, property.Name) : name);
                    }
                }

                if (descriptor != null)
                {
                    descriptor.ApplyCustomizations();
                    logicalProperties.Add(descriptor);
                }

                index++;
            }

            _properties = logicalProperties;
        }