473,883 Members | 1,617 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ExpandableObjec tConverter Question

I've created a usercontrol with a Person property. The Person property
returns a Person object. I've also created a PersonConverter class which
inherits the ExpandableObjec tConverter so the Person property is expandable
in the PropertyGrid. This all works fine.

I've also created another usercontrol that also has a Person property and
returns a Person object. But in this usercontrol I don't want the Person
object to be expandable.

What do I need to do in my PersonConverter class to enable the Person object
to be expandable in the PropertyGrid in my first usercontrol, but not in the
second usercontrol?

Thank you for your help.
Nov 12 '07 #1
2 7107
On the second user-control (where you don't want it expanding), try
declaring the /property/ with the following:

[TypeConverter(t ypeof(TypeConve rter))]
public Person SomeProperty {...}

This should tell it to use the default (non-expandable) converter for
this property. You could of course provide your own.
Full demonstration follows.

Marc

using System;
using System.Componen tModel;
using System.Windows. Forms;

public class SomeWrapper
{
[TypeConverter(t ypeof(Expandabl eObjectConverte r))]
public Person Expandable { get; private set; }
[TypeConverter(t ypeof(TypeConve rter))]
public Person NonExpandable { get; private set; }

public SomeWrapper()
{
Expandable = new Person();
NonExpandable = new Person();
}
}
// [TypeConverter(t ypeof(Expandabl eObjectConverte r))]
public class Person
{
public string Name { get; set; }
public DateTime DateOfBirth { get; set; }
}

static class Program
{
[STAThread]
static void Main()
{
Application.Ena bleVisualStyles ();
using(Form f = new Form())
using (PropertyGrid pg = new PropertyGrid())
{
pg.Dock = DockStyle.Fill;
f.Controls.Add( pg);
pg.SelectedObje ct = new SomeWrapper();
Application.Run (f);
}
}
}

Nov 12 '07 #2
Hello Mark,

In your PersonConverter 's GetPropertiesSu pported method, you could
interrogate the context.Instanc e to know if it can expand itself. It
could also make its decision depending on the type of the
context.Instanc e.

Best regards,

Nicolas Cadilhac @ VisualHint (http://www.visualhint.com)
Home of Smart FieldPackEditor .Net / DateTimePicker replacement (http://
www.visualhint.com/index.php/fieldpackeditor)
Home of Smart PropertyGrid for .Net and MFC (http://www.visualhint.com/
index.php/propertygrid)
Microsoft PropertyGrid Resource List - http://www.propertygridresourcelist.com

On Nov 12, 4:25 pm, Mark Collard
<MarkColl...@di scussions.micro soft.comwrote:
I've created a usercontrol with a Person property. The Person property
returns a Person object. I've also created a PersonConverter class which
inherits the ExpandableObjec tConverter so the Person property is expandable
in thePropertyGrid . This all works fine.

I've also created another usercontrol that also has a Person property and
returns a Person object. But in this usercontrol I don't want the Person
object to be expandable.

What do I need to do in my PersonConverter class to enable the Person object
to be expandable in thePropertyGrid in my first usercontrol, but not in the
second usercontrol?

Thank you for your help.
Nov 15 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1338
by: tsteinke | last post by:
Ok here is the problem. I have a struct property on an object that I want to edit with the property grid. One of the properties of the properties of the struct is supposed to be read only to the user. The inital problem is that when you use the ExpandableObjectConverter as the type converter the values reset themselfs back to their orginal values. Most likely because the Propertygrid has a copy of the value and not the value itself. ...
1
3476
by: Pol Bawin | last post by:
Hi, I have a objectA with a property that return an object B (accessor GET only) I have defined an ExpandableObjectConverter on the type B and overrided CanConvertTo, CanConvertFrom, ... The problem is that can not edit the object B (the proerty in greyed) in the propertyGrid (I can edit these properties but not the object directly because, it doesn't have SET accessor) In fact, when I edit this object, I woul like to change just the...
0
3050
by: Vladimir.Sakharuk | last post by:
I have created ExpandableObjectConverter in C#. for use in System.Windows.Forms.PropertyGrid. The property grid shows the DiffItem is a object that holds member TheItem. without expanding TheItem It works if u click, select from drop down box. until you DoubleClick it shows error: "Invalid property Value". with "Object type cannot be converted to target type."
0
2212
by: Adriano Coser | last post by:
Hello. I'm facing the exact problem described here: http://groups.google.com/groups?hl=pt&lr=&threadm=%23cs%24KWF%24BHA.2200%40tkmsftngp02&rnum=1&prev=/groups%3Fhl%3Dpt%26lr%3D%26q%3DTypeConverter%253A%253AGetProperties%26meta%3D I made a ExpandableObjectConverter subclass but its GetProperties method is not called when my object is set as a Converter of PropertyDescriptor. The thread above gives a good explanation of the problem, but...
0
1110
by: Adriano Coser | last post by:
Hello. I have an ExpandableObjectConverter subclass that I associate to the 'Converter' of a custom property descriptor. After I changed my .net code to the new syntax (VC 2005), the GetProperties method of my converter class is not called anymore by the PropertyGrid. Now my expandable properties always show a property 'Length' with value 0.
0
1534
by: Marcus Müller | last post by:
Hi, I'm using classes with the ExpandableObjectConverter attibute in a UserControl for properties. This works fine for some classes, and properties of these classes can be edited during design time. However, classes which are derived from CollectionBase don't save their values in the form's code. Properties can be changed in the VStudio property editor but they are not persistent: // Property values are saved in the forms code.
0
1285
by: Nebelung | last post by:
Hi! I've written a custom ExpandableObjectConverter in which I have overridden GetPropertiesSupported and GetProperties (and some more). By setting breakpoints in all methods I have found out that only GetProperties never gets called, however all other methods are called correctly. (The respective class has the TypeConverter attribute set.) Does anyone have a clue about what this situation might cause?
0
1952
by: Nebelung | last post by:
Hi! I've written a custom ExpandableObjectConverter in which I have overridden GetPropertiesSupported and GetProperties (and some more). The class to which this TypeConverter is applied has all properties public and should be accessed via PropertyGrid. Now I noticed that all overridden methods are called correctly (i.e. even GetPropertiesSupported, which returns true) except for GetProperties, which is never called (checked by...
0
1211
by: Rohan | last post by:
Hello, i am doing a custom class for my property for a property gird using ExpandableObjectConverter. I have a class (CustomFontClass) that uses a Converter which inherits the ExpandableObjectConverter. everything works fine, but the only thing that doesn't work is that the MyNewFontList NEVER calls the SET. I have followed the http://www.codeproject.com/KB/vb/using_propertygrid.aspx example in the example its the same case . any idea...
0
9792
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11142
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10743
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10415
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9574
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7971
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5991
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
4220
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3232
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.