Tagged Questions
The propertydescriptor tag has no wiki summary.
6
votes
1answer
3k 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 ...
3
votes
2answers
372 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 ...
3
votes
1answer
789 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 ...
2
votes
1answer
777 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 ...
2
votes
1answer
1k 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 ...
2
votes
1answer
496 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 ...
2
votes
1answer
585 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 ...
2
votes
2answers
793 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?
2
votes
2answers
973 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 ...
1
vote
1answer
53 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
3answers
942 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.
...
1
vote
1answer
406 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; }
}
...
1
vote
1answer
754 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
2k 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 ...
1
vote
2answers
3k 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 ...
0
votes
1answer
432 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
199 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 ...
0
votes
1answer
106 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
181 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 ...
0
votes
1answer
110 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 ...
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 ...