propertygrid Questions
3
Solved
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:
va...
Anlage asked 2/3, 2011 at 14:49
2
Solved
I am doing a project that allows user to customized the properties of a Control. I have a form that has a control like Label, TextBox, Button and PropertyGrid control. When the user clicks on the L...
Sulfanilamide asked 31/7, 2018 at 11:2
3
So for this project I'm working on, we've decided to use the .NET PropertyGrid control. The propertygrid gets populated with an object that is built during run time, based off of what item is selec...
Fabiola asked 21/5, 2012 at 16:4
2
Solved
I'm going to use PropertyGrid to show my Objects. Here is the info class. The Info class has some properties which is composed of the class type. However, the sub-class doesn't show the properties....
Smoking asked 31/8, 2013 at 10:7
1
Solved
Is there an event or a function that is triggered when the Windows Forms PropertyGrid Collection Editor "Add" button is clicked? (see image)
I'd like to add some custom code to run when this butto...
Barnwell asked 7/2, 2018 at 18:49
3
Solved
I just upgraded some systems to Windows 10 Creators Update and I noticed that the windows forms PropertyGrid control changed its default visual style for headers and bar margins to dark gray, like ...
Goy asked 25/4, 2017 at 11:34
4
Solved
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 ...
Polio asked 24/11, 2008 at 10:14
3
Solved
I'm using the Qt Property Browser library as a record editor. When the user has completed their edits of any given field, by removing focus from the edit item or pressing the enter key, I want to b...
Foist asked 17/12, 2010 at 0:32
5
I am binding an enum to a property grid like this:
public enum myEnum
{
Ethernet,
Wireless,
Bluetooth
}
public class MyClass
{
public MyClass()
{
MyProperty = MyEnum.Wireless;
}
[Default...
Aikens asked 12/12, 2012 at 14:30
2
I am using the Extended WPF Toolkit Community Edition v2.6 from NuGet in my project, but I don't know if there is something more I should be doing to allow me to theme or customize a control templa...
Stirring asked 18/3, 2016 at 20:3
3
Solved
I have a propertygrid which I need to create a combobox inside the propertygrid and display int value (1 to 9), I found using enum is the easiest way, but enum couldn't display int value, eve...
Clisthenes asked 10/5, 2016 at 2:4
2
Solved
How, do I display a ObservableCollection<> of custom objects in the Xceed WPF PropertyGrid in which each List Item can be expanded to display the custom objects properties. (ie:
----Property...
Automata asked 29/3, 2016 at 13:58
4
Solved
Is there a built-in editor for a multi-line string in a PropertyGrid.
Multiplicate asked 24/9, 2008 at 21:14
1
Solved
Please read entire question first to understand where I would have the ability to reset the default value of a property.
When defining a custom class that can be visually designed, one can impleme...
Eolithic asked 19/2, 2016 at 23:53
2
Solved
I am trying to incorporate a PropertyGrid control based off of the CollectionEditor class and Form, with a class that has a list/collection of another class as one of the properties. Lets call them...
Arianaariane asked 23/9, 2011 at 13:54
4
Solved
I want to add some custom PropertyGrid-centric Attributes to the object's properties, to provide richer editing, hide some values and group them in categories, because that class I'm working with d...
Harbird asked 27/8, 2012 at 14:10
2
Solved
hay all.
i am using property grid to add or remove an object to a collection.
but when the collectioneditor is closed only once the grid refreshes.
after adding another object the grid wont get r...
Densmore asked 16/9, 2010 at 13:25
4
Solved
i have a question about property grid.
when the form is shown i would like a group to be expand rather then collapsed.
i have search a lot for that on the web and could not find it yet.
any thought...
Willianwillie asked 3/11, 2010 at 10:31
4
Solved
I need a PropertyGrid for my WPF application. After lots of searches I have found this.
I have added the assembly (exe file) when I add the PropertyGrid to my form and I run it I can't see it in th...
Consensual asked 2/11, 2009 at 12:40
3
Solved
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 cod...
Dot asked 1/4, 2013 at 16:3
2
Solved
Winforms has a control titled PropertyGrid. A display element of the PropertyGrid is a description area. By default it displays the name of the selected property. Using attributes, a programmer can...
Farinaceous asked 26/4, 2015 at 22:15
4
Solved
I am dealing with property grid. I want to prevent auto sorting of column names for property grid.
here is my code. Bold highlighted code is my source for property grid and its order is just like I...
Herald asked 3/12, 2010 at 20:57
1
Solved
I need to set the selected item of my property grid. I'm getting an eventargs, which stores a string (this string tells me what property in my propertygrid the user wants to select).
The problem is...
Kauai asked 4/7, 2014 at 10:6
1
Solved
I am adding the Property grid control in my project.
I have to show the Drop down box in one field of Property Grid.
Is there any solution to apply this.
Intertwist asked 1/7, 2014 at 6:8
3
Solved
Is it possible to specify achieve following:
[SomeAttribute(condition1)]
public SomeType SomeSetting1 {get; set;}
[SomeAttribute(condition2)]
public SomeType SomeSetting2 {get; set;}
where cond...
Arthritis asked 20/2, 2014 at 8:59
© 2022 - 2024 — McMap. All rights reserved.