all groups > dotnet windows forms designtime > may 2005 >
You're in the

dotnet windows forms designtime

group:

How do I stop the designer from assigning properties to my usercontrols?



How do I stop the designer from assigning properties to my usercontrols? Jim
5/26/2005 12:00:00 AM
dotnet windows forms designtime: I have some complex (fairly) user controls that I have created. Some
of those user controls host other user controls. When I host one of
these on a WinForm, I sometimes run into problems where the designer
blows up with an "Object Reference Not Set to an Instance of an
Object". Sometimes it even (so kindly) "munches" my code in the
hosting control. Unfortunately, it seldm if ever tlss "where" exactly
the problem occurred, and to my knowledge there is no way to run the
designer in debug mode and stop through what it's doing.

My fix, for now, as been to put a "if( !DesignMode) test around al of
the set / get fxns in my properties. This works (usally.... Although
under certain circumstants, the designer has apparently not set the
value of the DesignMode property by the time these properties are
getting configured.) All this fact-checking in my propertis is
superfluous, were it not for the fact that the designer always wants
to assign values to them that sometimes do not make sense. Especially
and most particularly when the properties take objects as their
values, and the designer is trying to assign "NULL" to them.

Is there some attribute that I can assign to my properties that will
prevent the designer from trying to retreive values from, or assign
values to them while rendering the control in design mode? I have
seen the [Borwseable()] attribute, but that doesn't seem to fully
cover it. Is there a collection of information on these attributes
somewhere that I can read up on? Surely there has to be a better way
to do this other than what I am currently having to do.

Thanks for any help. :)

JIM

PS - Someone in the newsgroups said that the "IS" in fact a way to run
the designer in debug mode so that I can hunt dorwn problems like this
when they occur. Does anyone know how to do this or where the article
is on it? I still really think though that there is a way to keep the
thing from trying to set my properties for me. Any help is
Re: How do I stop the designer from assigning properties to my usercontrols? Bob Powell [MVP]
5/27/2005 12:00:00 AM
[quoted text, click to view]
the designer in debug mode so that I can hunt dorwn problems like this
when they occur.

You may be referring to the article on debugging controls which can be found
in Windows Forms Tips and Tricks.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.





[quoted text, click to view]

Re: How do I stop the designer from assigning properties to my usercontrols? cody
6/8/2005 10:58:19 PM
Simple apply
[DesignerSerialisationVisibility(DesignerSerialisationVisibility.Hidden)] to
the property and the designer will stop to serialize the value of the
property.


"Jim" <jfeaz@hotNOSPAMmail.com> schrieb im Newsbeitrag
news:i13d91d7vtvj963qd6889phjm8dctf47u3@4ax.com...
[quoted text, click to view]

AddThis Social Bookmark Button