Tagged Questions
The Windows Forms Designer is a graphical editor for Windows Forms controls within Visual Studio.
16
votes
6answers
2k 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 designer (inherited ...
15
votes
5answers
3k views
How can I get Visual Studio 2008 Windows Forms designer to render a Form that implements an abstract base class?
I engaged a problem with inherited Controls in Windows Forms and need some advice on it.
I do use a base class for items in a List (selfmade GUI list made of a panel) and some inherited controls that ...
13
votes
11answers
3k views
Handcode GUI or use gui-designer tool
I would like to hear some opinions on hand coding your GUIs as one typically do when using Java or Qt with C++, vs using a gui-designer tool? Examples of GUI designer tools would be MFC GUI-designer, ...
12
votes
9answers
6k views
Windows Form Designer: Could not load file or assembly
Has anyone ever had the issue where trying to "View Designer" on a windows form in Visual Studio .NET causes the error: "Could not load file or assembly…" ?
In this case, the assembly in question was ...
9
votes
4answers
3k views
Why does C# designer-generated code (like Form1.designer.cs) play havoc with Subversion?
My workshop has recently switched to Subversion from SourceSafe, freeing us from automatic locks. This led to concurrent editing of the Forms, which is wonderful. But when multiple developers commit ...
8
votes
4answers
2k 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, it decides to ...
8
votes
2answers
1k views
How do I get the Localizable property and support in my own design tool?
Overview
In another question, I asked about deploying localizations for some runtime compiled UserControl's. However, before I can get to deploying the localizations, I need a way of localizing the ...
7
votes
3answers
442 views
Automatic regenerate designer files
Recently I've been making some improvements to a lot of the controls we use, for example give properties default values and making buttons private instead of protected.
By making this kind of ...
7
votes
6answers
600 views
Can you change VS Win Forms designer code generation?
We implemented new coding standards, which call for our private members to have a leading underscore. Like so:
private System.Windows.Forms.Label _label;
Unfortunately VS will put out the default ...
7
votes
1answer
1k views
Creating a Custom Design-Time Environment
My question is related to the design-time support of WPF. From MSDN I read,
The WPF Designer provides a framework
and a public API which you can use to
implement custom adorners, tools,
...
6
votes
1answer
209 views
How to resolve VS2010 Windows Form Designer issue (base class cannot be loaded)
I have recently been getting an error in the Windows Forms designer of VS2010SP1 when using inherited UserControls.
The error is
The designer could not be shown for this file because none of the
...
6
votes
2answers
107 views
Bug or am I doing something wrong? Usercontrol Painting
private void UserControl1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawEllipse(Pens.Black, new Rectangle(-200, -500, this.Width + 400, this.Height + 420));
}
Paste the above code into ...
6
votes
3answers
1k views
How do I get the cursor back in VS2010rc winforms designer after drawing controlls?
Not sure if this is a bug or if i'm just missing something but I cannot for the life of me figure out how to get my cursor back in the winforms designer in visual studio 2010.
I opened up an existing ...
6
votes
6answers
3k views
Disable designer in Visual Studio?
I'm using Visual C# Express to write Windows Form applications, and call me old school, but I don't like the designer. It is a nuisance and pollutes my project with lots of unwanted files, as well as ...
5
votes
1answer
487 views
How to use Ninject in a Windows Forms application?
I have an WinForms application with this Main Form :
ICountRepository countRepository;
public MainPresenter(ICountRepository countRepository)
{
this.countRepository = ...
4
votes
2answers
334 views
Creating Button Shortcuts with Java like & (ampersand) with Windows Forms
I wish I could word this question better. Partly I just don't know the name of what I'm looking for.
With Visual Studio and Windows forms you can add an ampersand to create a "shortcut" key to a ...
4
votes
2answers
438 views
How do I get the Windows Forms Designer to use resources from external assembly?
I have some resources (images in this case) in a resource file that I use on controls in my Windows Forms project. The Visual Studio Resource Selection dialog doesn't have very good support for ...
4
votes
2answers
227 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 something that can be ...
3
votes
2answers
109 views
How to Bind The Database value in Datagridview textbox?
I am using Windows form and C# and MySQL.
In that i add three unbound columns in Datagridview with the help of control tag witch is in Datagridview right top.
column1 is DataGridViewCheckBoxColumn.
...
3
votes
0answers
45 views
How implement escape key on user control child controls at design-time, so that focus moves to respective parent control?
When one works in WinForms designer, you can click on a child control to select it. When you then hit the Esc key, the selection moves up to the parent control. If you press Esc key again, the next ...
3
votes
1answer
74 views
WinForms Designer breaks after a recompile
We have a WinForms application, targeting .NET 3.5.
Loading it up into VS2010 works fine, editing form layouts using the forms designer is fine initially, then we compile and run.
However, after ...
3
votes
1answer
57 views
Disable Designer for a derived class in Visual Studio 2008
I have class A derived from a Windows.Form class, using the VS2008 designer. When I double click on the file name in Visual Studio Solution Explorer, the form designer opens. This is the desired ...
3
votes
2answers
30 views
How to turn off creating events when pressing enter in VS Windows Forms designer?
I frequently find myself accidentally clicking enter when I'm laying out a form in Visual Studio. Whatever the focus is on when I accidentally hit enter, an event method is created in the code.
And ...
3
votes
2answers
214 views
Where does Visual Studio look for assemblies?
I've got a framework which consists of many base classes that can be derived to develop many apps. Among these classes there is a subclass of System.Windows.Forms.Panel for which I wrote its own ...
3
votes
1answer
75 views
Windows FOrms fonts look jagged in compiled application
This always happens to me but I'm at a loss to work out why.
Here is my designer
here is the actual form
look at the W in the heading on each. See how it's all jagged in the second? WHy is that?
...
3
votes
2answers
507 views
Click event for .Net (Windows Forms) user control
This is probably a very simple question, but for some reason, even the right way to web search for the answer eludes me...
I'm trying to create a user control that consists of a few labels and ...
3
votes
2answers
259 views
Control snapping in Visual Studio 2010
I'm sort-of just nit picking here, but maybe there's a simple solution which will save me some time.
When I'm drawing my Winforms GUI in the designer, controls snap to certain points. I can align the ...
3
votes
1answer
164 views
Linq to sql as object data source - designer problem with partial classes
I have created a simple LINQ to Sql class item in Visual Studio 2008 (DataClasses1.dbml). I can see three files there: ".layout" file, ".cs" file and ".designer.cs" file.
Next I have added a ...
3
votes
2answers
573 views
Adding a user control using Windows Form designer
This is probably an incredibly obvious question, but I just can't figure it out.
I have a Windows Form managed by the form designer. I'd like to include a custom user control, also managed by the ...
3
votes
2answers
151 views
Can I change the default modifier from Friend to Private in the Windows Forms designer in VS 2008?
When I develop a Windows Forms app in Visual Studio using C#, every control that I add to my form is by default marked as private, which is what I want.
When using VB.NET, every control is by default ...
3
votes
1answer
133 views
TypeLoadException occurred when drag-and-drop a User Control into VS Designer
I created a customized ListView class, BinableListView, which inherits from ListView. I was able to drag and drop the custom ListView into a Form in the designer window. Now, I am trying to add the ...
3
votes
1answer
2k views
Visual C# GUI Designer basic tutorial
can you recommend a Visual C# Form Designer tutorial that is targeted at experienced programmers who have at least a basic knowledge of C# but are new to the VS C# Form Designer. At least it ...
3
votes
1answer
225 views
How to apply dependency injection to UserControl views while keeping Designer happy?
public class StatisticsViewPresenter
{
private IStatisticsView view;
private Statistics statsModel;
public StatisticsViewPresenter(IStatisticsView view, Statistics statsModel)
{
...
2
votes
1answer
53 views
Why can't I alter the height of a TextBox control in the windows forms design view?
I have a new project. I drop a textbox control on it. I open up the properties window, and I can change the height and hit enter or click out of the box and it will update the designer, but when I try ...
2
votes
1answer
38 views
Windows Forms - Button clicks
I have a Windows Forms application containing around 15 different buttons which on-click should display either 1 or 0.
Now the problem:
Currently i'm repeating almost the exact same code for each ...
2
votes
1answer
127 views
.NET Windows Forms custom designer doesn't refresh the menu
I have created a custom designer (PannelloSfondoDesigner) for my custom control, a background panel (PannelloSfondo).
<Designer(GetType(PannelloSfondo.PannelloSfondoDesigner))>
Public Class ...
2
votes
2answers
44 views
How to make a docked panel go overtop of another docked panel
I have a panel that is docked to the left and another panel that is docked as fill in the middle. my panel on the left starts out with a width of 8 and then it slides open to 295. I need it to go ...
2
votes
2answers
68 views
WinForms Designer Exception
A WinForms form that includes a UserControl throws an exception when I attempt to display it in design mode, but runs properly when the program is ran or debugged.
The designer says:
The variable ...
2
votes
3answers
126 views
C# ComboBox for IP addresses
I need a custom combo box that holds IP addresses. I have a custom control that holds an IP address(that actually is a panel with 4 textboxes). I already tried adding other controls to a normal combo ...
2
votes
1answer
274 views
Why do my forms look like 'Windows Classic'?
Is there any free tool to style my C# Windows Forms, to make them look like Windows 7 Windows.
**EDIT**
In the designer mode, I have this :
But when I run I get this :
I don't know why I get ...
2
votes
1answer
221 views
Draw loading circle on windows form
How can I draw a loading circle(animated) on windows forms? Is it possible to make it big and transparent, so that underlying text on form is still visible.
Displaying a gif is not a kind of solution ...
2
votes
1answer
122 views
Having problem in design time for usercontrol adding another usercontrol programmaticaly
Here's the scenario:
I have a usercontrol (UC1) that changes aspect at design time according to what the user wants to show.
A regular button that pops a window with usercontrol UC2 (the window is ...
2
votes
2answers
3k views
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid
I have two projects in a solution.
PizzaSoftware.Data
PizzaSoftware.UI
In the Data project, I have my Entity Framework model which connects to my database.
My UI project has a project reference ...
2
votes
2answers
1k views
C# Visual Studio 2008 - Design-Time Error in the Windows Forms Designer
How do you fix the Design-Time Error in the Windows Forms Designer?
When I click on MyMainForm.cs[Design] page to bring up the WinForms i get the following error:
To prevent possible data loss ...
2
votes
2answers
1k views
C# Drawing Rectangle On the mouse event
I want to draw a rectangle. Thing what I want is that show the user to rectangle on the mouse event.
Like in the image. This is for C# .net Forms application.
Help me to achieve this. Any help is ...
2
votes
1answer
245 views
Visual Studio 2008 Form Designer messes up boolean properties values
I have a very annoying problem I'm trying to solve for couple of weeks. I have a WinForms C# project where I developed my custom control (ListView + ToolStrip with ToolStripButtons). This control is ...
2
votes
2answers
501 views
Convert XAML WPF Window to WinForm
Are there any utility or converter to convert XAML WPF window to .Net 2.0 Windows forms form?
2
votes
1answer
100 views
Git Diff - Indicate a line move
I'm developing a script to use with git diff to be able to 'filter out' lines that have simply moved in a file. Visual Studio 2008 has become a pain when working with Designer files. It sometimes ...
2
votes
1answer
649 views
Edit DataGridView via Designer in inherited UserControl
I created a UserControl with a Button, a TextBox and a DataGridView.
I set the modifiers of all controls to public.
Now If I inherit from that UserControl, I can modify the TextBox and the Button ...
2
votes
4answers
100 views
C# Regular Expression
I can't seem to get this to work.
I am looking for a regular expression that will validate a password. Allowable characters are a-zA-Z0-9, but the sequence must have at least 1 number and 1 capital ...