The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
21 views

Fileds to Properties Proxy

let's imagine i have the following classes that i am not allowed to change: public class BaseType { public UInt32 m_baseMember = 1; public bool m_baseMemberBool = false; } public class ...
2
votes
3answers
33 views

TypeDescriptor and child elements

This code: foreach (PropertyDescriptor descriptor in TypeDescriptor.GetProperties(lst[0])) { Console.WriteLine(descriptor.Name); } will write out the name of all the elements in my list. I.e. ...
1
vote
1answer
76 views

Custom PropertyDescriptor always readonly

I made the following custom PropertyDescriptor public class CustomProperty : PropertyDescriptor { private PropertyDescriptor _innerPropertyDescriptor; private bool _ronly; public ...
10
votes
5answers
479 views

var keyword not always working?

C#, VS 2010. Somebody, please explain why I can't use var in my code below! var props = TypeDescriptor.GetProperties(adapter); // error CS1061: 'object' does not contain a definition for ...
0
votes
1answer
136 views

PropertyDescriptor.AddValueChanged handler will not be executed with empty or white spaces string

I am using a propertyDescriptor to attach a handler on each properties of an instance. When one of these properties change, the handler method will be called except in one case (here's the problem) : ...
0
votes
1answer
129 views

Entity Framework Property Descriptor collection field values only

.. Hi, i'm trying to concatenate some column values from any entity like this: var valor = ""; PropertyDescriptorCollection objProperties = TypeDescriptor.GetProperties(obj); ...
1
vote
2answers
266 views

How to use default property descriptors and successfully assign from __init__()?

What's the correct idiom for this please? I want to define an object containing properties which can (optionally) be initialized from a dict (the dict comes from JSON; it may be incomplete). Later on ...
1
vote
1answer
520 views

PropertyDescriptor - Exception with SetValue() while GetValue() works

I have an object that I have defined and I wish to modify one of its property called "DeviceType" using PropertyDescriptor but it's not working out for me. I can retrieve the value of the property ...
2
votes
2answers
1k views

PropertyGrid readonly property on object-level

I want to display multiple instances of one class in my PropertyGrid. The class looks like this: public class Parameter { [Description("the name")] public string Name { get; set; } ...
0
votes
2answers
187 views

Create per-instance property descriptor?

Usually Python descriptor are defined as class attributes. But in my case, I want every object instance to have different set descriptors that depends on the input. For example: class ...
0
votes
1answer
118 views

Java Beans query pertaining to getName method of PropertyDescriptor class

This may come across as a naive question. I blame my inexperience in Java Beans. Im using Java Beans as follows -- I have a class ComponentModel which has a boolean member isComponentEditable Then ...
10
votes
1answer
176 views

Why does a function declaration override non-writable properties of the global object?

Setting a property descriptor like this: Object.defineProperty(window, 'someFunction', { value: function() { alert('safe'); }, writable: false, enumerable: false, configurable: false ...
1
vote
2answers
299 views

derived class not able to access protected setter using PropertyDescriptorCollection.SetValue

I have set one of my properties in my base class to have a protected setter. this works fine and I am able to set the property in the constructor of the derived class - however when I try to set this ...
0
votes
1answer
296 views

Retrieving the PropertyDescriptor of a nested object

I have the following code: public partial class Form1 : Form { public Form1() { InitializeComponent(); object o; Person p = new Person { FirstName = "John", Surname = ...
1
vote
1answer
213 views

Expression Trees and PropertyDescriptor

Is there any clean way to get a PropertyDescriptor from an expression tree? I currently have PropertyInfo but I ideally want PropertyDescriptor, my code: var prop = ...
1
vote
1answer
846 views

WPF Datagrid Databind to class with static properties and dictionary containing dynamic property value entries

UPDATED I am updating this post because I did some more reading and decided to re-implement my solution. Original Problem: I have a class with static properties and one Property that is a dynamic ...
0
votes
2answers
551 views

How to use a lis of parameterized property names and type for a java bean

Say I have a bean public class SomeBean{ List<String> messages; List<Integer> scores; String id; int number; .... } I am using the following code to process or ...
6
votes
1answer
4k views

Is there a work around for the Android error “Unable to resolve virtual method java/beans/PropertyDescriptor”?

I am trying to use a third party jar file within an Android application. I have been able to use some of the classes in the jar file just fine. However, one of the classes references some Java classes ...
3
votes
3answers
6k views

How to get PropertyDescriptor for current property?

How can I get PropertyDescriptor for property where I am? For example: [MyAttribute("SomeText")] public string MyProperty { get{....} set { // here I want to get propertyDecriptor for this property. ...
0
votes
1answer
162 views

Default attribute list should come to my class definition in c# .net

I have a employee class: public class Employee { public string Name { get; set; } public Int32 Salary { get; set; } public DateTime DateOfBirth { get; set; } } and I have ...
0
votes
1answer
485 views

TypeDescriptor.GetProperties return nothing from a class

I have defined a class TestObject that contains two simple properties num and name. I am trying to use TypeDescriptor.GetProperties() for the object of TestObject class to retrieve the defined ...
1
vote
1answer
1k views

Understanding TypeDescriptor/PropertyDescriptor/etc

See the code: class DataItem { public DataItem(int num, string s) { Number = num; Str = s; } public int Number { get; set; } public string Str { get; set; } } ...
0
votes
1answer
176 views

How does the Control class, provide the ForeColor, BackColor and Font default values?

I know that component-model indicates whether a property has a default value or not, by means of ShouldSerializeValue method of PropertyDescriptor. The base windows-forms Control class, has some ...
2
votes
1answer
2k views

Dynamically change properties returned by ICustomTypeDescriptor.GetProperties to readonly

I have a class which implements ICustomTypeDescriptor, and is viewed and edited by the user in a PropertyGrid. My class also has a IsReadOnly property which determines if the user will be able to save ...
4
votes
2answers
875 views

C# - How to determine whether a property is changed

I need to know whether a public property (which has getter & setter) is changed. The property is in a simple class (no user control/component etc). Is there an elegant way to subscribe to some ...
2
votes
1answer
703 views

How to set default PropertyDescriptor to a property?

Are there an attribute for setting default PropertyDescriptor for a property? I just want to add a attribute to a property and specify PropertyDescriptor. And then the instance of the ...
1
vote
1answer
1k views

How do I add PropertyDescriptors to a class rather then override them?

If I have a class that implements ICustomTypeDescriptor I can override the GetProperties() method to completely replace all the properties of the class with my custom PropertyDescriptors. But what ...
1
vote
1answer
4k views

Add a category attribute to a PropertyDescriptor

I have a set of custom PropertyDescriptor that I want to add categories too so they display in a more organized fashion in a PropertyGrid. I want each type of PropertyDescriptor to go into a specific ...
2
votes
1answer
809 views

Custom property descriptor and flattening hierarchies

I have a custom property descriptor that I use to support flattening object hierarchies. To accomplish this I subclassed PropertyDescriptor and I store a linked list to the "next" (child) property ...
1
vote
2answers
4k views

TypeDescriptor.GetProperties(thisType) to return properties, which are write-only

I'm trying to get all properties from a type, but using TypeDescriptor.GetProperties(thisType) will only supply me with properties, that has both setter and a getter. I have write-only properties. Are ...
4
votes
3answers
1k views

ReadOnlyAttribute vs PropertyDescriptor.IsReadOnly()

What is the difference between using a PropertyDescriptor that returns a value for the IsReadOnly() method, and one that is associated with a ReadOnlyAttribute?
4
votes
2answers
1k views

Resetting properties from a property grid

I am using a PropertyGrid to show properties from my objects. However, I'm also allowing the user to create their own properties, and set values for these custom properties. Each object that can have ...
7
votes
1answer
5k views

Get the default PropertyDescriptors for a type

I'm customizing how an object type is displayed in a PropertyGrid by implementing ICustomTypeDescriptor. I'm allowing the user to create their own custom properties that are stored in a single ...
0
votes
2answers
1k views

How to get all properties of an object and its sub objects

I have a similar question to this one except I need to loop all the sub objects and change the property to read-only Please check my code below. This one loop only the main object. When I tried to ...
2
votes
2answers
1k views

Read-only PropertyGrid

I need to show an object in PropertyGrid with the following requirements: the object and its sub object must be read-only, able to activate PropertyGrid's CollectionEditors. I found a sample that's ...