Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
3k views

TypeDescriptor.GetProperties() vs Type.GetProperties()

Consider the following code. Object obj; PropertyDescriptorCollection A = TypeDescriptor.GetProperties(obj); PropertyInfo[] B = obj.GetType().GetProperties(); // EDIT* I'm trying to understand ...
8
votes
2answers
1k views

Programmatically add an attribute to a method or parameter

I can use TypeDescriptor.AddAttributes to add an attribute to a type in runtime. How do I do the same for a method and parameter? (maybe 2 separate questions...)
8
votes
2answers
770 views

Binding IList<IMyInterfaceType> doesn't display members of Interfaces that IMyInterface inherits

I'm binding IList to a GridView. IMyInterface looks like public interface IMyInterface: IHasTotalHours, IHasLines { DateTime GoalStartDate { get; set; } DateTime GoalEndDate { get; set; } } ...
5
votes
1answer
910 views

C#: What's the Difference Between TypeDescriptor.GetAttributes() and GetType() .GetCustomAttributes?

Take these two code things: instance.GetType() .GetCustomAttributes(true) .Where(item => item is ValidationAttribute); And TypeDescriptor.GetAttributes(instance) ...
3
votes
1answer
101 views

TypeDescriptor.GetProperties v Type.GetProperties

I'm looking at some code where an MSDN author uses the following in different methods of the same class: if(TypeDescriptor.GetProperties(ModelInstance)[propertyName] != null ) return; var property ...
3
votes
3answers
123 views

Is it possible to conditionally hide properties at compile time in .Net?

Depending on a preprocessor directive, I want to set all properties in a class to EditorBrowsableAttribute.Never. I thought about creating a custom attribute, derived from EditorBrowsableAttribute, ...
3
votes
2answers
417 views

InvalidCastException casting object to its own type

I'm currently completely baffled by the problem I'm having. I'm writing a plug-in for another application that provides a public .NET API. I've created a class named Room and I am using a PropertyGrid ...
3
votes
1answer
444 views

TypeDescriptionProvider / HyperDescriptor implementation

I am currently populating my WPF grid using a data collection that implements ITypedList, with the contained entities implementing ICustomTypeDescriptor. All the properties are determined at runtime. ...
2
votes
2answers
44 views

How to GetType().GetFields with a custom attribute?

this old code returns a list of fields decorated with an attribute in a method call using reflection Is there a way to replace it with TypeDescripter or LINQ ? public static FieldInfo[] ...
2
votes
1answer
146 views

Convert from string to data in silverlight?

Basically I'm trying to do this: Path path = new Path( ); string sData = "M 250,40 L200,20 L200,60 Z"; var converter = TypeDescriptor.GetConverter( typeof( Geometry ) ); path.Data = ( Geometry ...
2
votes
2answers
205 views

TypeDescriptor doesn't return members from inherited interfaces

my problem is that TypeDescriptor doesn't return members from inherited interfaces, is this how it is supposed to be working ? or is it a bug ? [TestFixture] public class DescriptorTests { ...
2
votes
2answers
699 views

Add property-level attributes dynamically using TypeDescriptor for PropertyGrid

I want to add attributes (like Browsable(false)) dynamically while displaying in the grid. Scenario is that I have a custom class with some public properties. However, I dont want all of the public ...
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
1answer
67 views

Get private properties with TypeDescriptor

I would like to get private properties of the class using TypeDescriptor in c#. So far calling TypeDescriptor.GetProperties(myType); returns only public, non-static properties. I have not found a ...
1
vote
1answer
405 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
200 views

WPF, How to properly unhook handlers when watching a TypeDescriptor

I am using WPF, and attempting to follow the MVVM pattern. Our team has decided to use the Xceed DataGrid control, and I am having some difficulties getting it to fit into the MVVM pattern. One ...
1
vote
2answers
474 views

TypeDescriptor.AddAttributes() replaces the current attribute insead of adding it

I have this portion of code: var hasAttribute = TypeDescriptor.GetAttributes(property.DeclaringType).OfType<CrmTypeAttribute>() .Any((attr) => ...
1
vote
1answer
1k views

TypeDescriptor.CreateProperty doesn't add a property

I am trying to add a property to a type using TypeDescriptor.CreateProperty in order to display an additional property in a property grid, however this new property is not added and when I call ...
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
93 views

Pointer-to-member, type descriptors and references

I'm working on a type descriptor project in C++11. The type descriptor's job is to know the types of every member in a class, it's size and it's offset from the base of an object. I don't support ...
0
votes
2answers
89 views

.Net: How to I get Custom Attributes using TypeDescriptor.GetProperties?

I have created my own attribute to decorate my object. [AttributeUsage(AttributeTargets.All)] public class MyCustomAttribute : System.Attribute { } When I try to use ...
0
votes
1answer
87 views

Reflection - Best way to output any object? [closed]

Possible Duplicate: TypeDescriptor.GetProperties() vs Type.GetProperties() If I wanted a method which takes a random object and outputs (or otherwise retrieves) every contained Property, ...
0
votes
0answers
76 views

How do I use TypeDescription to create ClassA with child ClassB's attributes?

I'm working on a C# project in which i would like a datagridview to show certain columns. I can show columns of attributes of Class A, which is no problem. DataGridViewTextBoxColumn idColumn ...
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
184 views

VB.NET Dynamic CustomTypeDescriptor

I'm playing around with an idea(never played with TypeDescriptors before), and managed to get it to work nicely. But I'm concerned about some "best practice" decisions I made during my little ...
0
votes
1answer
437 views

set value of a property of an anonymous type using reflection / TypeDescriptor is it possible?

I tried using TypeDescriptor and the value is not changing, and via reflection I get an error that there is no setter for that property
0
votes
2answers
495 views

How can I avoid having a separate custom TypeDescriptorProvider for each of my classes?

I've added functionality to my project that allows the users to add their own custom properties to objects. I've created my own custom TypeDescriptor, PropertyDescriptor and TypeDescriptorProviders ...
0
votes
2answers
561 views

Filter properties returned by TypeDescriptor.GetProperties() depending on the class they are declared in

Hey guys. I have the following situation. I want to use a TypeDescriptor to get the properties of a certain type. The type's depth in the inheritance hierarchy may vary. I only want to get the ...
0
votes
0answers
783 views

How to remove a TypeConverter Attribute from a Type in .NET?

I'm restating this problem to summarise what I've already found: I have a test TypeConverter, (MyConverter), that for a ConvertToString will output "Converted To String", no matter what the input. ...