.NET control for providing a UI that allows the properties of one or more objects to be viewed and edited.

learn more… | top users | synonyms

0
votes
0answers
13 views

Fileds to Properties Proxy

let's imagine i have the following classes that i am not allowed to change: public class BaseType { public UInt32 m_baseMember = 1; public bool m_baseMemberBool = false; } public class ...
0
votes
0answers
45 views

How to create an array of the same properties?

So pretty much, what I'm trying to do is create a properties grid. It will hold things like input 0-5 or like output 1-64, which will have sub-properties like name, id, etc. Right now my code is very ...
0
votes
0answers
5 views

Xceed WPF PropertyGrid : decorating property with Category : compiler error

I have basically the same question as the one I asked here. Adding the using Xceed.Wpf.Toolkit.PropertyGrid.Attributes directive solved that. This time, the compiler does not like ...
0
votes
2answers
11 views

In Xceed WPF PropertyGrid how to make Search and Sort buttons invisible

I would like to make the Alphabetic Sort and Search bar invisible on the Xceed WPF PropertyGrid. How would that be done? I have read through the list of object attributes for the PropertyGrid and did ...
0
votes
0answers
5 views

Telerik WPF PropertyGrid : to display nested properties must AutoGeneratePropertyDefinitions be false

Is it possible to display nested properties of an object in the Telerik WPF PropertyGrid when AutoGeneratePropertyDefinitions is set to true?
0
votes
0answers
9 views

Add custom classes to propertygrid via reflection

I'm receiving a object from a webservice which can be anything, and i'm attempting to add it to a property grid. However, every "custom class" will be added but it is not expandable. Every anwser ...
0
votes
1answer
22 views

WPF Property grid using PropertyInspectorView

I am using PropertyInspectorView in WorkflowDesigner as a property grid in my WPF application. http://img89.imageshack.us/img89/2176/propertygrid.jpg Here I want to, Remove the "Clear" button ...
0
votes
1answer
44 views

PropertyGrid Browsable not found for entity framework created property, how to find it?

Trying to remove or place items on a property grid by changing the Browsable attribute. But unless browsable is set on object creation my code to change Browsable doesn't work. Now I can manually ...
0
votes
0answers
52 views

Emit Reflection (vb.net) Dynamically Reflect dropbox results in property grid

trying to add a dropdown into a property grid Im using VS2010 VB.net with reflection For my full solution - Download it here https://www.nyvault.com/files/reflection/xml_propgrid_reflect_sk.zip ...
0
votes
0answers
71 views

C#, PropertyGrid, array property, multiselect

There is array "Template", created earlier. For example: public class Template { ... public int ID { get; set; } ... } Need to implement a sample of several elements of the array in ...
0
votes
0answers
35 views

WPF Propertygrid with custom sorting

I'm looking for a PropertyGrid for my WPF project that allows me to customize the ordering the properties / categories are listed. Right now I'm using Extended WPF Toolkits (Community Edition) ...
0
votes
1answer
26 views

Edit List in PropertyGrid

I have a PropertyGrid (winform) that contains a list of positions. private ValuesCollection _position1 = new ValuesCollection(); public ValuesCollection Position1 { get { return _position1; } ...
0
votes
1answer
19 views

Parent class in unsorted property grid

I have a PropertyGrid, unsorted. One object is an object that inherits from another class: [TypeConverter(typeof(ExpandableObjectConverter))] public class ExpandValues: Values { public double ...
0
votes
1answer
85 views

In PropertyGrid Make the combobox show different display text in value input

I am trying to make a property that will show a different value display text in value input . My problem is that the values are strings with underscores and lowercase first letters . for example : ...
0
votes
0answers
18 views

Designer not updating after changing properties through custom form

I've tried to find help for this. I'll probably confuse trying to explain it because it confuses me but I'll try to be as clear as I can. I've created a special style of listview control and i use a ...
1
vote
1answer
41 views

UITypeEditor in PropertyGrid with multiselection

I have a custom object that can be edited from a PropertyGrid (DevExpress) via a custom TypeEditor (talking about .NET, c# and winforms). The "entry point" in my custom UITypeEditor is the method ...
0
votes
0answers
42 views

no data is available for encoding 1252

i have strange problem where didnt expect. I have custom dll with usercontrol (for WinForms), built with .NET4 VS2010 in Windows 7. This usercontrol has a public property of class ...
1
vote
1answer
21 views

Property attribute depending on Windows version

I have a bit strange problem. WinForms in Win8 have some bug about Encoding 1252 (confirmed). I have usercontrol with a public property of Encoding class (user can choose encoding in design-time). ...
1
vote
2answers
67 views

Show only some of the options of an enumeration

I have an enumeration shown in a PropertyGrid: private My_Enum _ee; public My_Enum EE { get { return _ee; } set { _ee= value; } } public enum My_Enum { NUM1 = 0, ...
0
votes
1answer
40 views

Read-only variable in Property Grid

I want to create a variable (int) read-only in the Property Grid. There is something I do not understand. The variable is without set, why it still allows me to change the value (and fall when it ...
1
vote
2answers
74 views

WPF: Use PropertyGrid from WPF Extended

I'm new in WPF (.NET 4.0, VS2010) and try to include a property grid. My XAML Markup looks like the following: <Window x:Class="MainWindow" ...
1
vote
2answers
52 views

View / Edit dynamic parameters in a grid

I'm evaluating the possibilities to view and edit parameters in a C#/WPF/MVVM application. I'm currently looking into some custom controls from WPF Woolkit Extended, Telerik, DevExpress and ...
0
votes
0answers
82 views

Problems using custom EditorDefiniton in PropertyGrid

I'm stuck trying to use a custom EditorTemplate in a Xceed PropertyGrid in my WPF application. I attached my minimalistic sample code to the end of this question. Let's assume that I have a MyObject ...
0
votes
2answers
81 views

Editing array / List in property grid

I have a list in the PropertyGrid, and an array. When the array opened in expander (+) can edit it, but when the list opens in expander can not edit it. What is the difference between them? I saw ...
0
votes
1answer
26 views

Editing in Propertygrid not enabled from Expander

I have a list in Propertygrid that opens by expander. I created it using the following site: Customized display of collection data in a PropertyGrid. I added this Editor Type to cancel the Collection ...
0
votes
1answer
15 views

Cancel editor collection of Propertygrid not through UI

I saw that in order to cancel the collection editor need to set type as follows: public class MyCollectionEditor : CollectionEditor { public MyCollectionEditor(Type type) : base(type) ...
0
votes
0answers
89 views

WPF Toolkit Extended PropertyGrid binding to collection

I somewhat fear that this question was already asked but I could not find anything useful. I want to use the PropertyGrid from the WPF Toolkit Extended Community Edition. I want to bind an ...
0
votes
1answer
53 views

Sort in property grid

My Propertygrid sorted by the A - B. One of the properties is a Collection with expander - I did it using this site: Customized display of collection data in a PropertyGrid I want that if i have in ...
2
votes
1answer
86 views

List expander in property grid , with genric ICustomTypeDescriptor

I have a generic class (Parameters.cs) that implements the interface: ICustomTypeDescriptor. I use the generic class for several different classes, one of which is this: private ...
0
votes
1answer
77 views

List in property grid c#

I have a list that it used to Property Grid, I want to eliminate the possibility of adding via button - Add. But I want to be able to edit the data already are. My list: private ...
0
votes
0answers
63 views

ENUM created on Runtime as Property Grid SelectedObject

How can I set the dynamic enum values as PropertyGrid1's Selected Object? test t1 = new test(); propertyGrid1.SelectedObject = t1; The dynamic enum should be the field type for test._test1 Please ...
1
vote
4answers
55 views

Disable Collection

I have a class with some public fields and I want to show this fields in PropertyGrid on a form: public class FileInfo { ... [DisplayName("Messages")] public ...
0
votes
0answers
43 views

List is not updated when multiple objects are selected in PropertyGrid

I am trying to solve an issue where multiple objects with the same type are selected in a property grid. All these objects provide an array of strings. During my investigations, I figured out that an ...
1
vote
1answer
57 views

How do you customize the descriptions in the Collection Editor of the PropertyGrid object?

I have a class that contains several public properties. One of those properties is a List containing instances of another class. It breaks down something like this: namespace ...
2
votes
1answer
44 views

Modifying structure property in a PropertyGrid

Why SomeClass.ClassField.StructField property doesn't change in a propertyGrid? It seems, propertyGrid doesn't call SomeClass.ClassField.set after SomeStruct instance has been changed. But same code ...
0
votes
0answers
41 views

Default Convertor and Collection Editor for PropertyGrid

I am creating an object editor of sorts that examines the app domain for all assemblies and allows you to load more assemblies, you select an assembly and you then select a (Public, Non-Abstract, ...
0
votes
0answers
95 views

C# WPF PropertyGrid custom order of properties

I have an object I want to display in PropertyGrid. This object has several properties and I want them to be listed in the order I want them to be listed in, not in alphabetical order. One example is ...
1
vote
2answers
147 views

Can PropertyGrid customise display for different selected objects values, instead of blank?

Is is possible to customise the display value of a property when the selected objects have different values for the property? The default behaviour of the grid is to show a value when all selected ...
0
votes
1answer
72 views

PropertyGrid control + array of custom objects

I have a PropertyGrid control to which I bind a container with an array of complex objects: // Collection public class ParametersCollection { private ParameterObject [] _parameters = null; ...
1
vote
1answer
58 views

Is there are way to stop the property grid from catching exceptions in Visual Studio

I am getting a cross thread exception when using a property grid to modify a property of a control in my application. I have tried to use the Exceptions dialog in Visual Studio to break on all ...
1
vote
1answer
74 views

Custom PropertyDescriptor always readonly

I made the following custom PropertyDescriptor public class CustomProperty : PropertyDescriptor { private PropertyDescriptor _innerPropertyDescriptor; private bool _ronly; public ...
1
vote
0answers
69 views

WPF property grid - Disable individual properties

I'm trying to use the property grid. I'm creating a dynamic object of all the properties in my property grid and using that to bind to a view. I realise the property grid has a ReadOnly and a ...
1
vote
1answer
182 views

Show detailed Folder Browser from a PropertyGrid

Please note it is not a duplicate question. How to show a detailed FolderBrowser as in the image below from a PropertyGrid (from the field/property which has ellipses ...) Using ...
-1
votes
1answer
224 views

Getting the PropertyGrid CollectionEditor to work with Generic Sorted Lists

I have a C# Library project that is used just for data structures; some of the classes use SortedList like this: SortedList<CustomItem1, CustomItem2> MySortedList; I then have a separate ...
-1
votes
1answer
102 views

Hide properties of an Image in PropertyGrid [closed]

I have an image that I want to display based on specific choices the user makes. This image shows up as a property in the PropertyGrid. Like this: The problem is that I am getting all this ...
1
vote
1answer
65 views

Property Grid > how to refresh the main property

[TypeConverter(typeof(BrokerageConverter))] [DescriptionAttribute("Brokerage Details")] [PropertyGridInitialExpanded(true)] [RefreshProperties(RefreshProperties.Repaint)] public class Brokerage { ...
0
votes
0answers
33 views

PropertyGrid BrowsableAttributes Bug?

This seems like a bug: the code below works fine: this.propertyGrid1.SelectedObject = new Button(); the code below doesn't: this.propertyGrid1.BrowsableAttributes = new AttributeCollection( ...
0
votes
0answers
41 views

Control which properties appear dynamically

I've created a control which is separated into 2 options: Color Image Both Color and Image have their own properties. I'd like to control dynamically which properties will be shown. e.g - when ...
0
votes
0answers
28 views

WinForms PropertyGrid steals focus of scrolling panel

I have a scrollable UserControl that includes, among other controls, a PropertyGrid. The UserControl reacts to application events to display an entity. Whenever an entity is displayed by the form, the ...
0
votes
1answer
227 views

WinForm propertygrid Collection Editor Add/Remove buttons Inactive

I am using the generic propertygrid to edit values from several custom classes. Some of these classes have collections and I can open those collections without a problem in the Collection Editor ...

1 2 3 4 5 10