Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
372 views

How do I get around this lambda expression outer variable issue?

I'm playing with PropertyDescriptor and ICustomTypeDescriptor (still) trying to bind a WPF DataGrid to an object, for which the data is stored in a Dictionary. Since if you pass WPF DataGrid a list ...
3
votes
2answers
1k views

Creating WCF DataContracts dynamically from code

Given the fact that I have a fully dynamic object model, that is, I have no concrete classes defined anywhere in code, but I still want to be able to create WCF DataContracts for them so I can use ...
3
votes
1answer
2k views

DataGridView not showing properites of objects which implement ICustomTypeDescriptor

I'm displaying a list of objects in a DataGridView. Everything was working fine. Columns were automagicaly added to the DataGridView based on the properties of the objects. Now I changed the class ...
2
votes
1answer
117 views

what is ICustomTypeDescriptor and when to use it?

I don't understand what it is and when to use it. MSDN didn't help me. MSDN states that ICustomTypeDescriptor Provides an interface that supplies dynamic custom type information for an object.
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
3answers
812 views

Readonly PropertyGrid

I'm using a PropertyGrid in an application I am writing to allow users to view and sometimes edit instances of my objects. Sometimes the user may have a file open in read/write mode where they can ...
1
vote
1answer
90 views

DataGridView ICustomTypeDescriptor

I´m want build a DataGridView with Databinding to a Class where I can add Properties at Runtime. I want to add Columns at runtime and have the values stored in the class. I found a nice example here ...
1
vote
1answer
302 views

ICustomTypeDescriptor throws argumentexception when implemented

I want to exclude the Property MiddleName from the browseable Properties in my PropertyGrid. When I hang around the interface ICustomTypeDescriptor on my Person class I get this exception while ...
1
vote
1answer
735 views

WPF DataGrid AutoColumn generation via ICustomTypeDescriptor

In a test project I've managed to AutoGenerate WPF DataGrid columns in the following scenario, where the data is stored in a Dictionary and binding is performed via PropertyDescriptors: public class ...
0
votes
1answer
29 views

ICustomTypeDescriptor and Blend

I'm working on a binding prototype for a new project and ran into a snag with Blend and binding. We're trying to us a BindableEntity class with the ICustomTypeDescriptor interface implemented. The ...
0
votes
0answers
100 views

Why does WPF seem to bypass TypeDescriptionProviderAttribute when INotifyPropertyChanged is implemented?

I'm trying to use the [TypeDescriptionProviderAttribute] in order to give my class a custom type descriptor. This works, but when I implement INotifyPropertyChanged WPF seems to ignore the custom type ...
0
votes
1answer
140 views

PropertyGrid - Property derived from IList<T>, How do I add to the PropertyGrid so user can Add/Edit/Remove items

Let me provide a bit of a history as to how I've reached this point. I originally had a Property within my class that derived from CollectionsBase and had this collection mapped to the PropertyGrid ...
0
votes
1answer
434 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
1answer
188 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
0answers
695 views

Multiple BindingSource components necessary for just one data source?

As per my previous question, Make properties available for data binding through some kind of interface in .NET?, I managed, with the help of @Marc Gravell that by implementing the interface ...