Tagged Questions
The uitypeeditor tag has no wiki summary.
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 ...
4
votes
3answers
168 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
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 ...
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
...
2
votes
1answer
161 views
How do you hook an editor for TFS 2010 WF BuildProcessTemplate arguments for built-in types that have a converter?
I've followed the Team Foundation Server 2010 book's custom editor for a dictionary<string,string> and can't get it to go. I have another custom editor in the same assembly, and consumed by the ...
2
votes
1answer
325 views
Insert custom TypeConverter on a property at runtime, from inside a custom UITypeEditor
I've created a custom UITypeEditor.
Can I possibly insert an attribute that also attaches a TypeConverter to my property from inside the UITypeEditor class?
I've tried the following, but nothing ...
2
votes
2answers
523 views
Copy Paste is Disabled in Property Grid
I have a FileNameEditor inside a property grid, which has a few entries like
Main File : "C:\blah1"
Sec File: "C:\blah2"
and so on.
My problem is that I cannot copy and paste from one property ...
2
votes
1answer
576 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
Passing objects to a UITypeEditor
I am currently hoping to use a PropertyGrid to allow users to edit some of my classes, however I've hit a wall with passing objects to the UITypeEditor(s) they use. When the user presses the drop down ...
1
vote
1answer
93 views
Propertygrid UIEditor disabling value editing through Keyboard
I have a propertygrid that uses UITypeEditor to display a Listbox and select a item.THis item gets returned on the proertygrid on selection ..But how do I disable editing of the selected item ...
1
vote
2answers
106 views
Making a generic TypeEditor
Say I have a property Foo of type SomeType in a class of type SomeClass which is edited with a custom editor SomeTypeEditor:
[EditorAttribute(typeof(SomeTypeEditor), ...)]
public SomeType Foo
{
...
1
vote
0answers
75 views
How can I save the values entered at design time for a complex property?
I'm still learning the ropes when it comes to implementing custom editors for complex properties at design time.
As a simple starting point, I'm trying to enable design-time editing of a property of ...
1
vote
2answers
362 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
1answer
433 views
Is there an existing PropertyGrid UITypeEditor for type “ChartColorPalette”?
I'm trying to write a simple property grid to allow the users to modify the colours of a Chart. By default, a Chart has a "Palette" property, which is of the enumeration type "ChartColorPalette". If ...
1
vote
1answer
632 views
Accessing additional context data in EditValue of UITypeEditor
I'm tweaking a WinForms application. This application has a Form that contains a PropertyGrid. An object is assigned to the SelectedObject property so that the property grid displays the properties ...
1
vote
0answers
340 views
UITypeEditor and readonly reference type properties in .Net, WinForms
I thought I had type editors and converters nailed until I tried to persist a Readonly Reference type property after editing it in a UITypeEditor.
In my UITypeEditor, because I'm working with a read ...
1
vote
1answer
482 views
Anyone have a UITypeEditor that picks System.Type instances?
I am busy writing a CodeSmith template that has one of its properties as type System.Type. I want to be able to select the type using a UI that picks the assembly, loads the assembly and then displays ...
1
vote
1answer
509 views
Can I make the default collection editor and/or a custom UIEditor envoke the set accessor for a property?
I'm writing a plug-in for an application where I have a custom class that attributes the native objects of the program. The API allows me to read and write keyed strings directly to and from the ...
1
vote
0answers
608 views
How to implement Auto-Complete with a StandardValuesCollection on a PropertyGrid
I have a property on an object whose custom TypeConverter specifies an exclusive StandardValuesCollection (let's say "Foo" and "Bar"), so that when editing this property via a PropertyGrid, a ...
0
votes
1answer
97 views
Custom UITypeEditor on ActionList / Smart Tag panel
I have a custom UserControl with a property called ParentNode of type OptionsNode, which inherits TreeNode. My control contains a TreeView in which many of these nodes are shown during design-time. ...
0
votes
1answer
167 views
How to create a PropertyGrid editor that limits a string to n characters
I have attempted to create my own UITypeEditor but the EditValue method never gets called
public class BoundedTextEditor : UITypeEditor
{
public override ...
0
votes
1answer
136 views
Why is the UITypeEditor “DateTimeEditor” not visible in the object browser?
I'm writing a custom control (using VS2010 & C#) and it has a property which is a nullable datetime.
Why is it that, when defining my property, I can write this...
...
0
votes
1answer
482 views
Designer-editing DataSource property of a DataGridView within a UserControl
I have a custom UserControl that contains several child controls, amongst which is a DataGridView. I don't want to EnableDesignMode for any of the child controls, but instead have exposed and ...
0
votes
1answer
531 views
PropertyGrid PaintValue problem: How to remove (and paint outside) the standard rectangle?
This might be a straightforward question, even though I haven't found an easy solution to it:
I've implemented my custom UITypeEditor with the sole purpose of adding a PaintValue to bools. For the ...
0
votes
2answers
246 views
From a UITypeEditor, retreive an attribute applied to the parent of a property in .net
It's not quite as simple as the title says but I hope you understand.
Consider this scenario:
Class MyClass
Property SubProp1
End Property
-TypeEditor(whatever)-
Property SubProp2
...
0
votes
3answers
1k views
UITypeEditor and IExtenderProvider
I have an extender (IExtenderProvider) which extends certain types of
controls with additional properties. For one of these properties, I have
written a UITypeEditor. So far, all works just fine.
...
-1
votes
2answers
55 views
What is the default property type editor for enums?
I have a property of type "Type" and need to assign an enum type editor to it.
Thanks