.NET control for providing a UI that allows the properties of one or more objects to be viewed and edited.
1
vote
1answer
17 views
Property Grid Custom Editor
I have a custom form Names "Form1" that I want to open through propertygrid control.
Code here
[CategoryAttribute("Extended Properties"),
...
0
votes
0answers
16 views
override size property of a control does not expand with height and width
The custom size property first shows with a '+" sign on load into the propertygrid, But When I click the '+' sign to expand it to view height and width, I do not see Height and width.
I've used the ...
0
votes
0answers
29 views
How to Fix it When PropertyGrid work with and List<T> in C# WinForm
Here is the code:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
propertyGrid1.SelectedObject = a;
}
private readonly A a = new A();
}
...
0
votes
0answers
40 views
List<List<double>> in Property Grid
How can I edit a List<List<double>> in propertyGrid?
I wan't to edit two dimensional arrays like this:
[[0.0,0.0],[1.0,0.0]]
0
votes
1answer
24 views
Description of enum in property grid
I have a Enum as I use it in Property Grid.
public enum Mye
{
[EnumItem("e 1", true, "This is e 1")]
e1= 1,
[EnumItem("e 2", true, "This is e 2")]
e2= 2,
}
...
2
votes
1answer
27 views
Custom Dropdown Editor Control in PropertyGrid is displayed in WHITE color
Got a bit of a run with PropertyGrid control and now stumbled upon a curious problem.
I've got an Uint32 property in a class which is a bit mask.
So I decided to create a custom dropdown UserControl ...
0
votes
1answer
37 views
PropertyGrid in PowerShell doesn't display all properties
I'm delving into making GUI's with PowerShell using Windows Forms, and I've been messing with the very useful and snappy-looking PropertyGrid object, but I'm not sure it likes to play very nice with ...
1
vote
0answers
14 views
How can I edit One Property and Display Another using a UITypeEditor Custom Type
I am using a PropertyGrid control in my WinForms with a custom type editor and this works fine but now I want to display one value in the property grid and edit another.
The property is a zero - many ...
0
votes
0answers
14 views
PropertyGrid Control depth
Is it possible to show all member and submember values of an object in a PropertyGrid control?
After one level only the member type name is shown instead of a new node with the member's value.
0
votes
1answer
20 views
Throw exception to PropertyGrid
I have a Winforms PropertyGrid.
When trying to set value in a variable.
I want to throw an error to PropertyGrid as error that appears after putting an invalid value.
There is a way to do this?
2
votes
1answer
52 views
Is it possible to hide an enum value from a PropertyGrid?
I'm working with the PropertyGrid control and using the SelectedObject property to display data within the PropertyGrid. Some of the properties in my grid are enum types. What I'd like to be able to ...
0
votes
1answer
40 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
55 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
56 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
27 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
21 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
17 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 ...
1
vote
1answer
46 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
67 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
79 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
102 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
44 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
49 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
28 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 ...
1
vote
1answer
137 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
25 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
72 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
52 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
76 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
50 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
122 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
74 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
116 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
108 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
39 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
26 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
151 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
69 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
124 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
150 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
90 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 ...
2
votes
4answers
64 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
55 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
77 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
58 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
52 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
126 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
229 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
89 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;
...





