Tagged Questions

The collection editor allows to edit collections in the property grid at design time.

learn more… | top users | synonyms

4
votes
2answers
569 views

CollectionEditor leads to “Object does not match target type.”

I have a custom control which has a property of type Collection< System.Drawing.Point >. When I use CollectionEditor to edit this property, the CollectionEditor window shows "Object does not match ...
2
votes
1answer
54 views

CollectionEditor's Parent

I have a property like that: [Editor(typeof(LayerCollection), typeof(UITypeEditor))] public List<Layer> Layers { get { return layers; } } And I have a LayerCollection class that derived from ...
2
votes
1answer
896 views

How to limit a PropertyGrid collection to a List<T>

Okay, I've read a couple of questions regarding the use of the PropertyGrid and collections. But, I'm having a difficult time understanding how/if [TypeConverter] will work for me. I've read the ...
2
votes
1answer
577 views

Design-time editor support for controls collection

I'd like to add a property which represents a collection of controls to a component and have a collection editor with which I can easily select the controls that belong to the collection. VS does ...
2
votes
2answers
1k views

Collection Editor at runtime

I'm working on an application to edit name/value pairs using a property grid. Some of the properties in my class file are ListDictionary collections. Is there an Editor attribute that I can apply at ...
1
vote
0answers
173 views

List<int> designer serialization

Why MyIntList property below correctly interprets the DesignerSerializationVisibility.Content producing the following output in the designer: this.myControl1.MyIntList.Add(1); ...
1
vote
1answer
169 views

How do I filter the visible properties inside of a property grid's collection editor (win forms)?

I have a property grid that points to an object to view its properties. I filter by doing the following: propertyGrid1.BrowsableAttributes = new ...
1
vote
0answers
145 views

.Net CollectionEditor Cancel Changes changes the underlying collection

I have a custom collection and I am displaying the collection in the property grid. But when I cancel the changes any addition/deletion to the collection is cancelled. But the individual items are ...
1
vote
1answer
148 views

set not being called when editing a collection

I have a class containing a collection property which I want to display and edit in a property grid: [EditorAttribute(typeof(System.ComponentModel.Design.CollectionEditor), ...
1
vote
1answer
152 views

Is there any way to use a CollectionEditor outside of the property grid?

I'm replacing my property grid with something that will allow me to customize my UI a bit better. I placed a button on my form that I hope when clicked would pop up a CollectionEditor and allow me to ...
1
vote
2answers
364 views

Property setter not getting called with CollectionEditor

I have a custom control that has an Items property. I Have applied an EditorAttribute with a UITypeEditor of type CollectionEditor. Collection Type: [Serializable] ...
1
vote
2answers
1k views

How to add validation to PropertyGrid's CollectionEditor?

I'm using PropertyGrid to edit an object containing a collection. Collection is edited using the CollectionEditor. I have to make sure elements in collection are unique. How can I add validation to ...
1
vote
1answer
309 views

Questions about .NET CollectionEditor type

Who can tell me the internal working mechanism of a CollectionEditor in plain English? I have implemented every virtual function and step into each of them. Still got no clue of its intended ...
1
vote
1answer
462 views

Modifying CollectionEditor in PropertyGrid

I currently have a list containing Call's, which is the base class. If I want to add derived classes of Call to the list, I know to do the following. public class CustomCollectionEditor : ...
1
vote
2answers
630 views

Problem editing custom readonly collection in property grid, .net, winforms

I have a custom collection, lets says COL, that derives from ObjectModel.Collection. I have my own collection editor that works fine when a property, of type COL, is Read and Write enabled. However, ...
1
vote
1answer
390 views

PropertyGrid GenericList with GenericItems

Is there a way to display and edit values in the PropertyGrid (and his CollectionEditor) of an object, which is derived from an abstract generic class? I don't get the properties displayed only ...
1
vote
2answers
1k views

How to programmatically add items to CollectionEditor's list/listbox/collection ? [modified]

I have custom collection editor and I want to programmatically add items to it's list (collection) so they will could visible in a listbox. How I can do that? I know about CollectionEditor's AddItems ...
0
votes
0answers
56 views

Using Visual Studio collection editor with user created custom types

I am developing a custom control that have a property of type ObservableCollection<ICollectionItem> I want the developer that is using this control to be able to create his own type that is ...
0
votes
0answers
91 views

CollectionEditor and “Code generation for property '****' failed” Error Message

I have a user control that uses a property with CollectionEditor. And I'm using another project in the same solution to test the control. My collection editor works without a problem, except the IDE ...
0
votes
1answer
193 views

How do you create a custom collection editor form for use with the property grid?

I am trying to incorporate a property grid control with a class that has a list/collection of another class as one of the properties. Lets call them class A and the list would be containing class B ...
0
votes
1answer
139 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
0answers
38 views

How can I add a custom CommandBinding to the CommandBindingCollection Editor in Visual Studio 2010?

I am developing a custom control library in WPF and I would like developers to be able to add a specialised type of command binding to a UserControl using just the VS designer. When you open up the ...
0
votes
1answer
301 views

Custom CollectionEditor never triggers a property's “set” method

I am trying to implement a way of persisting a collection in a custom settings class. I have successfully created the settings class (inheriting ApplicationSettingsBase) and can save properties using ...
0
votes
1answer
18 views

Invalidating the control while changing parameters in the collection editor

We are looking for a more elegant way to update control contents while editing it's properties in a collection editor. As far as we know the only solution is the following: ...
0
votes
1answer
169 views

Most advanced tutorial on custom collection editor

We need to know everything on how to customize the standard .NET collection editor, where shall we look?
0
votes
3answers
139 views

Moving from .Net 2 -> 3.5 SP1 WindowsForms: WindowsForms ControlDesigner / CollectionEditor missing?

I'm preparing to move some project from .Net 2.0 to 3.5SP1. I've noticed, that for some UI Controls the ControlDesigner / CollectionEditor Class seems to be missing in 3.5 ( ClientProfile ). What is ...
0
votes
0answers
354 views

Automatically expanding nodes in the PropertyGrid / CollectionEditor when selected item changes

I'm using the PropertyGrid and CollectionEditor to edit objects that contain properties and collections of (nested) objects. The properties shown in the embedded PropertyGrid on the right of the ...
0
votes
1answer
204 views

extended treenode / treeview, almost there but

I am writing an extended treeview, just with a few extra properties in my TreeNode class with designtime support. The code is allmost ready, but at the moment I'm completely stuck with the following ...
0
votes
1answer
136 views

Initializing objected created in .NET CollectionEditor with a specific reference

I need to initialize any new objects created with CollectionEditor with a specific reference. More specifically, I have an object, Pipeline, that can be edited in the PropertyGrid. This object ...
0
votes
1answer
290 views

Custom Acivity property does not show Collection Editor in PropertyGrid

I have written a custom CodeActivity for .net Workflow 4.0, and one of my (non inarg/outarg) properties is a collection, which I want to be able to populate in the designer, using the standard ...
0
votes
1answer
200 views

UserControl preview does not gets updated when existing items are deleted in CollectionEditor

I am facing this problem with default CollectionEditor. When I add items to the collection editor, I display the items as a rectangle on the user control. But when I delete the items that were ...
0
votes
2answers
1k views

PropertyGrid - Ilist Collection Remove not firing as expected

I have a collection object that implements IList. Inside the collection I have used a List to collect the items. Inside the PropertyGrid (at runtime), it binds properly and the Collection Editor ...