The uitypeeditor tag has no wiki summary.
0
votes
0answers
12 views
How to define custom UITypeEditor for closed-source controls at DESIGN-TIME
I've read this question, and the only modification i need is to achieve the same, but not at run-time, but at Design-Time.
VS WinformsDesigner rewrites my designer.cs file, but for example when i ...
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 : ...
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
...
1
vote
0answers
63 views
Add instances through a List with UITypeEditor
I created the Component MyComp and i defined inside it a Property called SlaveComps managed through a UITypeEditor.
public class MyComp : Component
{
public MyComp()
{
...
2
votes
1answer
134 views
How to update PropertyGrid from a custom editor?
I'm using the PropertyGrid (in the CollectionEditor) to edit some properties of a class. The properties are actually wrapped in classes that implement ICustomTypeDescriptor. One of them uses a custom ...
1
vote
1answer
245 views
Removing “…” button from PropertyGrid collection property
I'm trying to change the way collection properties appear in a Winforms PropertyGrid.
Instead of having
MyList | (Collection) [...]
And having to press on the button to show the CollectionEditor.
...
0
votes
1answer
25 views
Where do I store a connection string so it is accessible by visual studio at design time?
I have some custom property editors that need to pull application data. These are working great in my test project where I am able to set a connection string in my app.config file. However, in ...
0
votes
1answer
42 views
Asp.net setting some context for a Custom UITypeEditor from parent form at Design Time
Trying to craft a way for our designers to create custom asp.net webforms for our customers. The basic idea is that we have a general set of fields that can be saved, with each customer using a ...
2
votes
0answers
99 views
How to open the properties dialog for a Complex Property without a PropertyGrid at runtime
Consider a form with some custom UserControl and a Button.
In Visual Studio designer, you can click the button off to the right of your property (like you would when you change other common ...
0
votes
1answer
123 views
How to open the properties dialog for a Font without a PropertyGrid at runtime
Consider a form with a TextBox and a Button. When you click that button you should get the Font properties dialog at run-time.
During designer you can click the button off to the right of the ...
0
votes
1answer
234 views
How to specify a custom UITypeEditor for all instances of a generic closed-source type?
How can I specify a custom UI editor for all instances of a generic type? The type is defined in another assembly, which I don't own.
This is what I tried, inspired by ...
0
votes
2answers
307 views
Custom FileNameEditor
I want to implement a custom FileNameEditor; I want to set my own filter and I want to be able to select multiple files.
public class Settings
{
[EditorAttribute(typeof(FileNamesEditor), ...
0
votes
1answer
101 views
User Control with a UITypeEditor of type IList<Control> throws exception “Control is not marked as serializable”
I'm trying to add a property to my User Control of type IList<Control>, and I've implemented a UITypeEditor to show the user a CheckedListBox of controls from the form and allow the user to ...
2
votes
1answer
137 views
How to relabel ellipsis button for modal UITypeEditor in PropertyGrid?
I have a Windows forms PropertyGrid and a customer UITypeEditor per http://msdn.microsoft.com/en-us/library/system.drawing.design.uitypeeditoreditstyle.aspx
Displays an ellipsis (...) button to ...
0
votes
1answer
264 views
How to use a custom UITypeEditor for an enum?
I wrote a custom UITypeEditor for my type Smiley per MSDN's walkthrough http://msdn.microsoft.com/en-us/library/ms171840.aspx
When the user clicks the ellipsis, my UITypeEditor will launch a modal ...
0
votes
0answers
168 views
UITypeEditor with a popup window for complicated types to show in propertygrid in wpf
I'm looking for this
Behavior in wpf and I'm using radpropertygrid of telerik's controls. it simply could be accomplished in windowsform application but since I'm working on a wpf project I have been ...
0
votes
0answers
182 views
C# VS2008 show editor to select a collection of existing controls at design time
I have the next property on my user control:
[
Browsable(true),
Category("Data"),
Description("Listado de controles que proporcionan los parĂ¡metros para generar el reporte."),
...
-1
votes
2answers
297 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
3
votes
0answers
131 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
...
0
votes
1answer
298 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. ...
2
votes
1answer
353 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 ...
0
votes
1answer
535 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 ...
4
votes
3answers
647 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 ...
2
votes
1answer
415 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 ...
1
vote
2answers
163 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
109 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 ...
0
votes
1answer
267 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...
...
1
vote
2answers
767 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]
...
0
votes
1answer
988 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 ...
1
vote
1answer
691 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
3answers
2k 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 ...
2
votes
1answer
823 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 ...
1
vote
1answer
851 views
PropertyGrid PaintValue issue: 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 ...
1
vote
0answers
464 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 ...
2
votes
2answers
671 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 ...
0
votes
2answers
371 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
...
4
votes
1answer
1k 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 ...
1
vote
1answer
644 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
667 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
745 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 ...
3
votes
2answers
2k 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 ...
6
votes
3answers
3k 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 ...
27
votes
1answer
6k 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 ...
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.
...
