0
votes
1answer
13 views
Allow multi-line String properties in the Properties window
I've got a Windows Form User Control with a string property for setting the text of a textbox. This string can be multi-line.
I've noticed that on some controls with a text prope …
0
votes
0answers
10 views
Custom Property value not shown during runtime for usercontrol
I am creating DBCombo with a property called DBColumnsCols of type SYColumns. SYColumns is a custom class type. SYColumns has three properties whcih are the sub properties for DBCo …
0
votes
5answers
2k views
Visual Studio 2005 - can not open form on designer
My team developed a GUI application on Visual Studio 2005, managed C++. Since some deliveries it is not possible to open the form in the designer, even if the source code and the p …
0
votes
2answers
35 views
Is creating an inheritance chain of WinForms going to bite me?
Suppose I have a base form Main1 which may need to be altered slightly, including perhaps adding additional Controls and altering the size/location of existing Controls. Those bas …
2
votes
2answers
48 views
Complex class declaration confusing forms designer?
I have a class declared as:
public class Foo<T> : Panel where T : Control, IFooNode , new()
{
...
}
I added it by hand to test it, but I will eventually need somethin …
2
votes
5answers
97 views
Windows Forms Designer destroys form layout
This morning I stumbled over a weird issue in Visual Studio's Windows Forms designer. I have a form which worked for about a month now without changes. It looks like this in the ap …
0
votes
1answer
78 views
Collapsible member events in Visual Studio designer
How can I get my control members to show their events on the Visual Studio event grid? Visual Studio does this for certain things like the "(DataBindings)" member by putting them i …
0
votes
3answers
77 views
How to temporarily disable Visual studio auto generated events?
All,
I have finished the GUI design phase... Now I've started to add meaningful names to all the controls in my application. Visual Studio is driving me nuts auto generating the e …
4
votes
3answers
471 views
Visual Studio Designer is always trying to change my control
I have a somewhat complex UserControl, and Visual Studio 2008 is giving me a rather harmless annoyance when working with it. Every single time I open the control with the Designer …
0
votes
2answers
75 views
C#.NET - Can I change which class the designer adds events to?
I have my own custom control derived from System.Windows.Forms.TreeView which is present on the designer toolbox.
I add an instance of this custom control to my form (using the de …
0
votes
0answers
25 views
Visual Studio Designer: problem with custom component selection change
I have a component derived from IComponent (also tried to derive from Component)
The problem:
If I have 2 my custom components on the form, and one of them is selected, then I can …
1
vote
2answers
38 views
Detecting Mouse Click on an Array of Controls
I'm adding an array of Panel objects (which in turn contain other items) to a form at runtime. Then, I'm assigning a click event to each panel inside a loop like so:
pnlInstrument …
0
votes
2answers
105 views
How to recognize code generated by Visual Studio’s GUI designer?
Visual Studio is kind enough to generate a lot of code for us when we create and design Windows.Forms controls. It also surrounds most of it with a #region statement.
In newer ver …
0
votes
1answer
41 views
Filtering Listboxes in a Windows Forms application
Is it possible to filter the contents of a Listbox in a Windows Forms application?
The DataSource of my ListBox is a BindingSource containing a bunch of DTOs in an:
IList<Disp …
0
votes
2answers
80 views
Visual Studio Form Editor: How do I add title text-style mouseover to a button?
I have a System.Windows.Forms.Button control, and I want to add a hover-text explanation of what the button will do. I were writing a webapp, the answer to my question would be app …
