| Thread | Last Post | Replies |
|
| Point & PointF | 30 Dec 2004 21:04 GMT | 1 |
How come I can change the values of X & Y for a Point in a Property Grid but not for a PointF? I suppose a UITypeEditor must be written but all the examples that I've seen don't show how to display the
|
| Leave designtime mode in runtime | 29 Dec 2004 13:58 GMT | 3 |
Is there an easy way to exit designtime mode in runtime and switch back to designtime? Thanks in advance.
|
| In VB.NET, can I show available Events in the Properties box? | 23 Dec 2004 03:43 GMT | 2 |
I know that in C#, the Properties box has a second tab that lists all of the available Events for a selected control during design time - it would be really, really nice if this same kind of tab could be used while working in VB - the only way to list events (from what I can
|
| DefaultValue(typeof(Padding), "??" | 20 Dec 2004 01:35 GMT | 7 |
I tried this one but doesn't seem to work. I looked into the IL for Padding and PaddingConverter but doesn't seem to have a CreateInstance(string)... is it possible at all to specify a DefaultValue for it? Any workarounds? [DefaultValue(typeof(Padding), "{Left=2,Top=2,Right=2 ...
|
| Images in the designer | 15 Dec 2004 06:57 GMT | 1 |
I am trying to create image property that will work in the designer. I want the image to be written to the resource file for the class. Here is what I have so far, but I am running into a wall here. The property comes up okay in the designer with the drill button and the file ...
|
| System.Windows.Forms.Design.ControlDesigner is not defined | 15 Dec 2004 02:26 GMT | 2 |
hello world, i'm quite a newby to .net, and so i try to follow the msdn samples. many samples refer to a System.Windows.Forms.Design.ControlDesigner
|
| Can a custom converter be debugged? | 13 Dec 2004 18:55 GMT | 3 |
I am mystified by type converters. At design time, I enter a string into a text field. At run time, I query the field, and the string I entered isn't there. Also, I derived my converter from the ExpandableObjectConverter, and my converter is getting called once for each property ...
|
| How can I tell the TypeConverter to Dispose or destruct C#. | 13 Dec 2004 18:16 GMT | 2 |
I have a PropertyGrid that loads one of my objects. The Object has a TypeConverter that I build to display a list of values. If the grid closes I would like to do some cleanup. In the constructor of the TypeConverter I registered an event so that
|
| Stop designer from dropping controls from form? | 13 Dec 2004 01:58 GMT | 3 |
When putting user controls in panels on a form, sometimes the designer just loses them. Many people have reported this issue. The potential causes people speculated were the control was not accessible or was changed in the project
|
| Reliable way to determine after all properties were set? | 13 Dec 2004 01:51 GMT | 3 |
Is there a reliable place where I can do some work after all of the properties have been set? Controls/Components that need to know when all properties have been set need to use ISupportInitialize BeginInit, EndInit and use the EndInit call
|
| IDesignerHost + CreateComponent problem | 13 Dec 2004 01:44 GMT | 2 |
i have a big problem with the designer in vs2003/c#. i searched the internet but can't find any solution to the problem described below... i would like to create a usercontrol with some content in it. e.g. a titlebar and a stateicon and so on. there is also a panel (i'll name it
|
| IDesignerSerializationService? | 11 Dec 2004 09:57 GMT | 2 |
I'm implementing my own "Form Designer" and now want to add Cut/Copy/Paste and Undo/Redo feature into it. I found that, correct me if I'm wrong, I need to implement "IDesignerSerializationService" interface to use standart menu commands to
|
| Focus at design time | 10 Dec 2004 15:15 GMT | 2 |
Anyone know how to change the focus to another control at design time? I have a container control and I want to be able to at design time change to another control in the container control based on the mouse click. I figured that part out, but I can't get it to set the focus with ...
|
| More design mode help? | 09 Dec 2004 17:20 GMT | 1 |
Some issues we have noticed with the designer: 1. Can not determine design mode before the properties are actually set, making it difficult to code the connection of controls? Is there a way to tell design mode earlier?
|
| Interesting VS 2003 designer behavior | 09 Dec 2004 01:53 GMT | 9 |
If I have a property that exposes a custom Collection and has a bunch of AddRange overloads, the AddRange call that takes the argument of type that the property exposes HAS to be the last method declared in the collection class after all the other AddRange method declarations. ...
|