0
votes
1answer
17 views
Hide User-Control in Design Mode
Hi I use User-Controls in my ASP.Net (3.5) pages to simulate popups (Visual-Studio 2008).
The problem is that all these popups are positioned over the normal controls in the page i …
2
votes
3answers
85 views
How to write c# code in contructor that will NOT be executed at design time by Visual Studio?
I have a method call in the constructor of my user control that does something that won't work at design time (connecting to database), and the VS just bailed out when I tried to a …
0
votes
1answer
24 views
Custom control generate code at design time
Is it possible to write a control which can create/ modify a code file in the same project - (Along the lines of the how the form designer works). I can't see the actual creating / …
7
votes
4answers
619 views
Baseline snaplines in custom Winforms controls
I have a custom user control with a textbox on it and I'd like to expose the baseline (of the text in the textbox) snapline outside of the custom control. I know that you create a …
1
vote
1answer
25 views
Detect design time in NetBeans
When using the Swing graphical editor in NetBeans is it possible for a custom component to detect that it's design time? E.g.
public CustomComponent() {
initComponents();
…
0
votes
0answers
30 views
Visual Studio design time event handling
I am trying to create a WPF wizard control in visual studio. I am successful except I would like to navigate the pages in design time by clicking the next and previous buttons. The …
1
vote
2answers
66 views
Design-time editor support for controls collection
I'd like to add a property which represents a collection of controls to a component and have a collection editor with which I can easily select the controls that belong to the coll …
0
votes
2answers
30 views
Problem with set related property in designer at first time
Hi
I Develop a Form Designer, also develop some custom control that inherit from standard control like button.
Also, i have some property that related, for example user must sel …
0
votes
2answers
36 views
How to initialize my web control properties at design-time?
Hey,
I need a way to initialize my web control's properties when it's dropped on the designer area. As "initialize" I mean: If my control has a property Prop1. I need to assign a …
0
votes
1answer
17 views
How to use an extensibility dll for designer support
I've written a UITypeEditor and it works when the editor lives in the same assembly (or one of the referenced assemblies) as the types using it. Then I can use something like:
[Ed …
2
votes
1answer
52 views
How is an assembly resolved at design time?
I have an extensibility library (or the start of one), with a UITypeEditor. I'd now like to decorate the property with the EditorAttribute. I don't want to reference the extensibil …
0
votes
2answers
43 views
Change the order of property serialization at design time in .Net
I have a class where it's problematic to relay on the properties being serialized in alphabetical order at design time.
In other words, property Z must be serialized before propert …
2
votes
1answer
98 views
How can I make a component disappear in the form designer?
I'm creating a custom control that contains other controls, including two scroll bars, one horizontal, one vertical. There's a property to set one or both scroll bars invisible, w …
4
votes
1answer
266 views
Design-Time drag and drop.
Hello everyone,
I'm currently working of a project where my part is to design a Design Surface where the end user can add/remove/move controls at run-time.
I followed this tutori …
1
vote
1answer
101 views
Creating a ToolBox component with design-time support using a UserControl
I have a UserControl for Windows Forms. How can I convert it to a component? What I want to do is, to add it to the VS toolbox, add it to form with drag and drop at design-time and …
