form-designer

Resources in project file in VS2008 gets "reused" creatively by the form designer, possible to avoid?

We have some auto-generated resource files in our project in Visual Studio 2008, with some localized versions, and in one of these localized versions, there is a string which in this case is empty. More explicit. We have a core resource file, with lots of string resources. We then have 4 other localized versions of thisfile, and in one ...

How to Implement Custom Windows Forms Designer ?

How can we implement Windows Forms Designer in a WinForms application ? Visual Studio uses System.ComponentModel.Design namespace to implement the Form Designer. How can we use this to implement a Form Designer in a WinForms application ? Is there any other library available for achieving the same ? ...

Custom form designer, move/resize controls using WinAPI

I have to fix some problems and enchance form designer written long ago for a database project. In Design Panel class code I encountered these lines private void DesignPanel_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { (sender as Control).Capture = false; switch (FMousePosition) ...

.NET custom form designer: How to implement IMenuCommandService?

I've got a report form designer written long ago for a database project. It used a lot of winapi magic hence i was forced to rewrite some parts 'in proper way'. Thanks to some articles from MSDN magazine (here and here) and CodeProject i was able to implement designer surface, toolbox and undo/redo engine. Every resource i discovered ...

Non-Default Constructor

I have a component I created in C# which had previously been using the default constructor, but now I would like it to have its parent form create the object (in the designer), by passing a reference to itself. In other words, instead of the following in the designer.cs: this.componentInstance = new MyControls.MyComponent(); ...

Controls on main window using Visual C++ designer?

Is is possible to draw controls using Visual C++ designer on the main window, in the same way you can design dialogs? I'd preferably like to be able to design the main window controls this way without using MFC, rather than creating them on WM_CREATE. EDIT: I don't want a dialog-based app, just to be able to design the main window graph...

Native API window designer

Why isn't there a designer for native api forms in Visual Studio? Similar to Delphi? If there exist some programs, tools etc, please advice. What is the best approach to design complex windows in pure API? ...

Open source runtime form designer

Hi, I'm searching for an open source runtime form designer (for SCADA, not searching for html designer), which is somewhat similar to modern IDE WYSIWYG's. So far, my list is empty. Requirements are crossplatform and C++. Thanks in advance. UPDATE: Currently I'm using wxWidgets as the GUI platform. So the possible solutions are eith...

How to implement a winform dialog in Delphi without IDE?

I don't have the Delphi IDE installed. Can I still design forms? ...

Examples of good IDEs to analyze for custom Form/Report designer

I am working on a basic form/report designer. Some of the features i'm looking to implement are: Single or multiple selection of objects Alignment of objects (when several are selected) Same-sizing of objects (when several are selected) Moving/dragging of selected object(s) Selected object resizing in eight directions (using object gri...

StandardCommands does not work on non-standard control in windows form designer

Hi I need standard command like copy/paste for non-standard control like LineShape (VisualBasic PowerPack Shapes) in custom form designer Some problem: 1- can't drag drop on form. (but i find way to add it to form by doubleClick or Enter) 2- Copy/Paste does not work.(important) 3- ShowContextMenu does not work. (not important) I kn...

When using a form designer, should labels be named?

In IDEs like QtCreator or with Visual C#'s form designer, I'd like to hear whether labels "should" be named or just left with the default naming scheme from the form designer. If the object is not going to be touched in code and only serves as non-changing textual information, does the object need to be part of some naming scheme? If I h...