| Thread | Last Post | Replies |
|
| ImageIndex Designer? | 28 Oct 2004 10:05 GMT | 2 |
The ToolBarButton class has an ImageIndex property which presents a drop down combo with the images from the parent ToolBar's ImageList. I have a component with an ImageList and I want my ImageIndex property to behave the same way as the ToolBarButton.
|
| Updating verbs in the PropertyGrid | 28 Oct 2004 06:29 GMT | 8 |
I'm working on a component (with a custom designer) where the designer verbs change based on what a property is set to. The problem is,... it appears that the designer keeps its own cache of the verbs such that when I change the property of my component, I have to click off the ...
|
| Constructors/Initializers/ConfigurationSettings in design time... | 27 Oct 2004 06:03 GMT | 1 |
I have a series of user controls which internally contain datasets. At run-time, these datasets are loaded from XML documents in the following manner: private string _xmlPath = ConfigurationSettings.AppSettings["XML.Path"];
|
| Borders around custom control | 25 Oct 2004 10:27 GMT | 2 |
Is it possible to show a border around my custom control similar to the borders that I can set around a PictureBox through the BorderStyle property? Regards, Teis
|
| Can not Serialize the Name Property | 24 Oct 2004 20:55 GMT | 4 |
I have a Component an gave it a Property "Name". I declared it like this: <DesignerSerializationVisibility(DesignerSerializationVisibility.Visible), Browsable(False)> _
|
| XmlSerializer initiated with given type returns object of different type (other assembly) | 24 Oct 2004 20:31 GMT | 2 |
Hello Newsgroup I have a strange situation with a VS.net Add-In that uses the XmlSerializer class for deserialization. As the problem seems to be the same for the Add-In as for designers, I thought I might be lucky here...
|
| Collection Serialization | 23 Oct 2004 10:57 GMT | 1 |
I have a collection class that is derived from CollectionBase. There is a property on my *Form Class* of type= MyCollection class. This form property has the following attributes: <Editor(GetType(System.ComponentModel.Design.CollectionEditor), GetType(System.Drawing.Design ...
|
| Design time visibility | 23 Oct 2004 09:36 GMT | 1 |
I want to know if it's possible to have a component what visibility at design time depends on how it's being created, for example, if the component is manually dropped by the user to a windows forms it should be displayed but if it's
|
| ParentControlDesigner CanParent method | 22 Oct 2004 21:25 GMT | 1 |
I've searched through previous posts about implementing this method to customize the child controls being dragged into a custom container control and I do have some questions. The CanParent method is only executed if the control dragged into the
|
| Designer services | 19 Oct 2004 02:04 GMT | 2 |
there are a lot of samples for designer classes. Some are storing internal references to the services (componentchangeservice, selectionservice, etc.) on the designer classes, some are getting them when needed. Are there disadvantages on storing private references to such services ...
|
| Is ther any wrapper framework dll available for gdi32,user32 | 18 Oct 2004 23:53 GMT | 2 |
Hi Friends, Is there any similar framework dlls for gdi32.dll, used32.dll. I want to use following functions 1) GetPixel
|
| UITypeEditor for events | 18 Oct 2004 03:01 GMT | 1 |
I would like to use the property grid to set events for a component at runtime, however I want to show a ... button for the events instead of a drop-down list. I have an implementation of IEventBindingService which works correctly (I
|
| Problems with codedom serialization | 16 Oct 2004 23:49 GMT | 4 |
Actually have try to redefine the BackColor and ForeColor of the Control class using the key 'new' with the DesignerSerializationVisibility.Content attrubute. Well, the desinger not serialize this property. Any ideas about?
|
| How can a PropertyGrid show a custom UI editor at runtime? | 15 Oct 2004 18:14 GMT | 1 |
It's a simple question, but after hours of searching I've come up with nothing! All I want to do is use the nice custom UI editor feature in PropertyGrid when it isn't hosted in Visual Studio. There are lots of examples out there showing how to get the
|
| Need an event for when the user drags a component on | 15 Oct 2004 16:00 GMT | 3 |
I need an event that fires ONLY when the user has JUST dragged a component on. I tried creating my own ComponentDesigner class to deal with some events. I tried handling the ComponentAdded event. ComponentAdded fires whenever
|