473,811 Members | 2,944 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ExpandableObjec tConverter and Accessor

Hi,

I have a objectA with a property that return an object B (accessor GET only)

I have defined an ExpandableObjec tConverter 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 properties
without recreate this object.

It's a simple schema of my problem
Point 12, 0, 0 <- this line is greyed without a SET accessor
X 12
Y 0
Z 0

A solution exists without to define a SET accessor?

Nov 15 '05 #1
1 3471

Hi Pol,

I think if you apply [TypeConverter(t ypeof(Expandabl eObjectConverte r))] to
this property, its child fields will can be seen, and can be modified.
So I think this can meet your need.
If you inherited the ExpandableObjec tConverter and implemented ConvertTo,
ConverFrom,CanC onvertFrom, CanConvertTo method, the object field will
display your customized string. Because your property is readonly(only has
get accessor), your object property fiedl will be gray. This is by design.
If you still want to change the object's value through the object
customized string not the child fields, I think you can do like this:
1. add a empty set accessor to this property.(This enables the property's
customized string to can be modified)
2. in ConvertFrom method, refer to ITypeDescriptor Context.Instanc e field,
it will return to you the control's reference, then you can change certain
field of control's this property.(but not create a property object)

This logic works well on my machine. Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Pol Bawin" <pb@rtech.be>
| Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| Subject: ExpandableObjec tConverter and Accessor
| Date: Wed, 29 Oct 2003 17:05:21 +0100
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Lines: 22
| Message-ID: <3f************ ***********@rea der3.news.skyne t.be>
| Organization: -= Belgacom Usenet Service =-
| NNTP-Posting-Host: 194.78.114.66
| X-Trace: 1067443526 reader3.news.sk ynet.be 16227 194.78.114.66:5 2148
| X-Complaints-To: us**********@sk ynet.be
| Path:
cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!new sfeed00.sul.t-online.de!t-onlin
e.de!skynet.be! skynet.be!louie !tlk!not-for-mail
| Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:1950 92
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
|
| Hi,
|
| I have a objectA with a property that return an object B (accessor GET
only)
|
| I have defined an ExpandableObjec tConverter 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
properties
| without recreate this object.
|
| It's a simple schema of my problem
| Point 12, 0, 0 <- this line is greyed without a SET accessor
| X 12
| Y 0
| Z 0
|
| A solution exists without to define a SET accessor?
|
|
|
|

Nov 15 '05 #2

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

Similar topics

0
1336
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. ...
0
3046
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
2208
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
1108
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
1533
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
1282
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
1947
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...
2
7105
by: =?Utf-8?B?TWFyayBDb2xsYXJk?= | last post by:
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 ExpandableObjectConverter 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...
0
1209
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
9734
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10395
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
10137
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
9211
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...
0
6895
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5564
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5700
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4352
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3027
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.