Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
1answer
4k views

ICustomTypeDescriptor, TypeDescriptionProvider, TypeConverter, and UITypeEditor

I'm trying to get an overall understanding of how you use ICustomTypeDescriptor, TypeDescriptionProvider, TypeConverter, and UITypeEditor to change how a PropertyGrid displays and interfaces with an ...
13
votes
3answers
11k views

How to modify PropertyGrid at runtime (add/remove property and dynamic types/enums)

How do you modify a propertygrid at runtime in every way? I want to be able to add and remove properties and add "dynamic types", what I mean with that is a type that result in a runtime generated ...
10
votes
3answers
4k views

Multi-line string in a PropertyGrid

Is there a built-in editor for a multi-line string in a PropertyGrid.
8
votes
4answers
580 views

Is there a property grid control in WPF?

If not, then why, because Winforms has one? I did search for a standard one but couldn't find anything. Also if doesn't exist, what's the best free one?
8
votes
5answers
2k views

Default built-in editors for the PropertyGrid control

I can't seem to find the answer to this anywhere. What default editors/converters are building into 3.5 Framework PropertyGrid control. Otherwise what object types can I throw at it and it be able to ...
6
votes
2answers
273 views

How do I show a bool property as Yes|No in the property grid?

I know I can do this by writing custom type descriptors etc., however given how simple this requirement is; am I missing an easy way of doing it. Being able to set the string for "true" and "false" ...
6
votes
5answers
1k views

A good free wpf-based property grid? [closed]

Can anyone suggest a good, free wpf-based property grid? I used to use Denis Vuyka's original WPF PropertyGrid, which I liked, but I lost the source code. And unfortunately (for me, anyway) the only ...
6
votes
1answer
6k views

How to create custom PropertyGrid editor item which opens a form?

I have a List<> (my custom class). I want to display a specific item in this list in a box on the PropertyGrid control. At the end of the box I would like the [...] button. When clicked, it would ...
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 ...
6
votes
3answers
2k views

Is it possible to mark a property shown in a property grid as a password field

I'm using C# and have a windows form containing a property grid control. I have assigned the SelectedObject of the propertygrid to a settings file, which displays and lets me edit the settings. ...
6
votes
2answers
3k views

How can I force the PropertyGrid to show a custom dialog for a specific property?

I have a class with a string property, having both a getter and a setter, that is often so long that the PropertyGrid truncates the string value. How can I force the PropertyGrid to show an ellipsis ...
5
votes
3answers
469 views

How to enumerate PropertyGrid items?

I have a PropertyGrid with assigned to it some object. var prpGrid = new PropertyGrid(); prp.SelectedObject = myObject; I want to get all grid items like I can get selectedGridItem property: var ...
4
votes
1answer
56 views

A control that is equivalent to the “Properties Window” of Visual Studio?

I say, as in the picture: if not exists, how to create it dynamically?
4
votes
3answers
171 views

Property set isnt being triggered with a UITypeEditor implemented

I have a property grid that when a button is clicked for one of the properties, certain fields are filled in. However the property's set isn't being triggered. I do not know why. private ...
4
votes
1answer
666 views

extjs 3 - add progressbar and image in property grid

Is it possible to implement progressbar in property grid in extjs 3? How do I add an image in property grid? I have a value in percentage and I want to represent that in progressbar (its uneditable). ...
4
votes
4answers
820 views

Winforms PropertyGrid - properties not editable

Hello this is my first question of stack overflow, so forgive me if i do anything stupid. Well my problem is that I'm working on a level editor and i want to use a PropertyGrid control to edit ...
4
votes
1answer
357 views

PropertyGrid - Possible to have a file/directory selection button next to a property value?

Is it possible to have a file/directory selection button next to a property value in the PropertyGrid? Hitting the button would launch a standard "Open File" or "Select Directory" type of dialog. In a ...
4
votes
3answers
731 views

PropertyGrid alternatives

I love PropertyGrid, well, at least the concept behind it - use reflection and attributes to edit your objects without writing much UI code. My excitement died out pretty quickly though, the default ...
4
votes
4answers
2k views

Create a dropdown list of valid property values for a custom control

I've created a custom user control that has several properties. One specifies which database I want the control to access. I want to be able to present the user of the control a drop down from which ...
4
votes
3answers
526 views

Limitations of using .NET 2.0 (Windows Forms) controls in WPF?

I want to start a new application on WPF. The new User interface in WPF needs DataGridView control and PropertyGrid Control. But it looks like that these two controls won't exist in WPF and I want to ...
4
votes
2answers
2k views

How do I inject a custom UITypeEditor for all properties of a closed-source type?

I want to avoid placing an EditorAttribute on every instance of a certain type that I've written a custom UITypeEditor for. I can't place an EditorAttribute on the type because I can't modify the ...
4
votes
2answers
2k views

How can I customize category sorting on a PropertyGrid?

How can I customize the sorting of categories in a PropertyGrid? If I set either of the following... propertyGrid.PropertySort = PropertySort.Categorized; propertyGrid.PropertySort = ...
4
votes
1answer
4k views

Using the .NET collection editor without using a property grid control

I have a PropertyGrid on my form. My boss thinks it's ugly. Uncouth. Unsophisticated. He wants a nice, neat, clean form. Here's the catch: One of the properties is a collection of our home-grown ...
4
votes
2answers
1k views

Is there a better StringCollection editor for use in PropertyGrids?

I'm making heavy use of PropertySheets in my application framework's configuration editor. I like them a lot because it's pretty easy to work with them (once you learn how) and make the editing ...
3
votes
1answer
228 views

WinForms Property Grid won't allow me to change struct value

Not quite sure why this is happening, but I want to be able to modify the XNA color value: private Color _color = Color.White; [System.ComponentModel.Category("VisibleInEditor")] ...
3
votes
1answer
324 views

How can I use a WinForms PropertyGrid to edit a list of strings? (C#)

In my application I have a property grid to allow users to change settings. This works fine for strings and other value properties, but what I need now is a list of strings that can be edited by ...
3
votes
1answer
261 views

How do I view object properties in PropertyGrid?

At the moment I have an object of type A which is being viewed by the PropertyGrid. However, one of its properties is of type B. The property which is of type B is not expandable. How can I change ...
3
votes
2answers
151 views

Propertygrid changes not picked up when using menu shortcut for saving

I am trying to implement a simple windows forms application, where the user can edit instances of a simple Person class. The application makes use of the standard propertygrid, assigning instances of ...
3
votes
3answers
313 views

C# How to expose a property based on the value of another property in a propertygrid?

I have class with multiple properties. Sometimes a property (A) may be edited in a propertygrid. But sometimes property A may not be edited. This depends on a value of another property. How can I do ...
3
votes
1answer
173 views

WinForms PropertyGrid with empty and non-empty Category

Is there any way to customize Winforms PropertyGrid, if it needs to show one element without category on top (full row) and several categories with elements inside below?
3
votes
1answer
705 views

How can I expand a ExpandableObjectConverter object in a PropertyGrid automatically?

I have a .net PropertyGrid. I select an object to view, and a property of that object is a Vector3. I can use ExpandableObjectConverter to automatically expose the properties of the Vector3 into in ...
3
votes
3answers
527 views

An alternative to PropertyGrid? Please hear me out

I know this is a wide topic, but please hear me out. I have a few instances where I need to edit a set of related properties. Some are free text, another might be an integer or password, and many ...
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
2answers
270 views

Set Value of Property When Delete Key is Pressed in PropertyGrid

I am currently working on a project that hosts WinForms designer. I am using PropertyGrid to display manipulate properties of the controls that are dropped on the DesignSurface. I have created ...
3
votes
3answers
457 views

PropertyGrid - is it customizable?

I have a project in that we have to represent some graphic objects on a usercontrol in WYSIWYG. Also is required to edit each objects properties(Color, Location, etc). I hesitate between using ...
3
votes
5answers
3k views

Remove C# attribute of a property dynamically

I have a class with a set of properties As given below. class ContactInfo { [ReadOnly(true)] [Category("Contact Info")] public string Mobile { get; set; } [Category("Contact Info")] ...
3
votes
5answers
1k views

How to change the DisplayNameAttribute on runtime to use in a Property Grid C#

I am wondering how to change the DisplayNameAttribute on runtime, I want the displayName to be Feet instead of Meters in my property grid when I do some conversions, is that possible? ...
3
votes
1answer
1k views

Converting List<MyClass> Property into PropertyGrid compatible property entries in c#

I have a base class with a number of properties. Included in this is a list of extended properties with metadata. This is a List of a custom class containing DisplayName, Description, Name, Type & ...
3
votes
1answer
1k views

C# Winforms PropertyGrid and ErrorProvider

I'm working on extending the errorprovider to the propertygrid and treeview controls. I found a very helpful post at: Example detailing how to add the errorprovider to a propertygrid, and it works ...
3
votes
1answer
4k views

C#/winforms: how to best bind a propertygrid and a System.Data.DataRow

i have System.Data.DataRows with several fields, most of them just plain types like int, single, string. what is the best way to make them editable using a propertygrid? it should work automatically ...
3
votes
1answer
871 views

C# PropertyGrid drag drop

I'm trying to implement drag/drop support to a propertygrid in C# using VS2005 (.NET 2.0). The propertygrid can handle the dragenter etc. events, but there doesn't seem to be a way to get the ...
3
votes
4answers
3k views

Creating / Modifying Enums at Runtime

I'm creating a program where the user has the option of creating their own custom properties that will ultimately be displayed in a PropertyGrid. Right now I don't want to mess with custom editors, so ...
3
votes
1answer
493 views

Italic text in a PropertyGrid

I'm using a PropertyGrid to show custom properties that are exposed through the implementation of ICustomTypeDescriptor. My objects are setup in a tree structure and values for each property are ...
3
votes
1answer
790 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 ...
3
votes
3answers
3k views

Programatically Hide Field in PropertyGrid

Using <System.ComponentModel.TypeConverter(GetType(System.ComponentModel.ExpandableObjectConverter))> _ on the declaration of a class (which is a property of another class) that consists of a ...
3
votes
1answer
184 views

Looking for ASP.NET code to render a form that displays a view of an object

I've got the task of displaying a web form to represent the properties in a .NET class. In WinForms, there's a pre-fab control named PropertyGrid that is a lot like what I need. I'm just looking for ...
2
votes
2answers
50 views

c# propertyGrid key listener

I have a propertyGrid; PropertyGrid contains lots of properties storing number values; What I want to do is to enter one of those properties and instead of writing new number in it, by pressing arrows ...
2
votes
0answers
83 views

Detect an open DropDown box in a PropertyGrid in C# Winforms

Situation: I have a window with an OpenGL scene rendered inside. Next to the OpenGL scene, I have a PropertyGrid of the selected 3D object in the scene. Objects in the scene can be changed in other ...
2
votes
1answer
65 views

.NET PropertyGrid: Varying Read/Write rights for a complex object using ExpandableObjectConverter

I'm trying to edit complex objects in a PropertyGrid control. I add the ExpandableObjectConverter (or my own subclass when I need it) as the TypeConverter and it works fine. The one thing I can't ...
2
votes
0answers
34 views

How Enter key behaves for a textbox in the IWindowsFormsEditorService.DropDownControl(userControl)

I have a custom control with a property Value. The property grid displays the editor in the dropdown style, using the IWindowsFormsEditorService.DropDownControl(userControl) method within the ...

1 2 3 4 5 7