all groups > dotnet windows forms designtime > may 2004 > threads for may 15 - 21, 2004
Filter by week: 1 2 3 4 5
My component does not serialize CollectionBase derived property?
Posted by Ă–zden Irmak at 5/21/2004 4:36:28 PM
Hi,
I created a new collection class derived from CollectionBase and my
component has a property using this derived class...
Although I marked my derived class as [Serializable], VS.Net designer does
not serialize my component's property?
Anybody has a clue?
Thanks...
Özden
... more >>
Making property not visible in Properties at design time
Posted by Marina at 5/21/2004 1:48:55 PM
Hi,
I have a control with a property that I do not wish to be visible at design
time. There is a DesignTimeVisible attribute, but that works only on
classes - can't apply it to a property, which is what I really want.
So its ok for the property to be accessed at run time - just don't want it
... more >>
Is Container? Designer seems to know...
Posted by schneider at 5/20/2004 11:03:52 PM
Anyone know how to determine if a control is a container control?
Panel, Form, GroupBox, ..
Some inherit from ScrollableControl but groupbox does not...
I want to know if a control was intended to be used as a container.
Thanks,
Schneider
... more >>
Default Values in Properties Window
Posted by msnews.microsoft.com at 5/19/2004 12:58:26 PM
I have a class that is a subclass from User Control and I would like to have
BackColor have a default value of ... oh lets say Color.White.
I noticed that even if I use ResetBackColor and ShouldSearlizeBackColor, it
still shows up as bold unless I actually override the property directly and
pr... more >>
VS.NET 2003 doesn't honor the version of assemblies in .licx file
Posted by Brock Reeve at 5/18/2004 1:51:24 PM
VS.NET calls lc.exe at build time to extract the licenses from the types in
the .licx file, but it doesn't behave the same way as if you called lc.exe
from the command line stand alone. The two .licenses files generated are
different even though the .licx file is the same.
For example, sup... more >>
IDesignerSerializationService does not return instance
Posted by joerg NO[at]SPAM krause.net at 5/18/2004 8:37:41 AM
Hi designers,
I've written my own designer following some articles postet here.
It works as expected, but I cannot run design time serialization.
I tried to get the right service this way:
IDesignerSerializationService ds =
(IDesignerSerializationService)this.host.GetService(typeof(IDes... more >>
How to make sure your component's initialization order
Posted by Tester at 5/18/2004 7:41:21 AM
Hi,
How does one handle component's initialization when order is important.
Here is an example, my component can be used for databinding by others.
It is possible that DataGrid.DataSource=myComponent; is placed before my
component's
initialization by designer. I found that it just depends o... more >>
|