windows-forms-designer Questions
2
Solved
I am having an issue with my aspx.designer.cs file not auto updating. I am using VS 2013.
- I've tried to delete the designer file and rebuild. NO JOY.
- There is no option to convert to web projec...
Calicut asked 31/7, 2014 at 20:33
5
Solved
I have a Form with many TextBoxes. I need some TextBoxes inside one group, and other text boxes inside another group. By group, I just need a way to make these TextBoxes appear to belong with each ...
Fugitive asked 26/7, 2014 at 0:8
3
Solved
I adapted a roll-your-own Input box based on this.
I modified the code to the following:
using System;
using System.Windows.Forms;
public static class PromptForText
{
public static string ShowD...
Videlicet asked 23/5, 2014 at 22:24
10
Solved
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 referenc...
Gizela asked 27/3, 2011 at 17:28
2
Solved
Lets say I have classes like this
public class R
{
protected string name;
protected List<S> listOfObjectS;
}
public class S
{
private string name, ID;
private A objectA;
}
public class...
Adit asked 30/12, 2013 at 19:30
2
Solved
I am having troubles with setting my user control to automatically resize with the panel where it is created. When user is resizing a main form that contains the user control, the size of this user...
Endosteum asked 15/4, 2013 at 15:14
2
Solved
I have a combobox, and I would like to search through every element in it.
How can I do this? (also the number of items is not the same everytime, but this is not so important).
I am using ...
Shophar asked 26/8, 2013 at 11:35
3
Solved
I created a generic base class for a WinForm UserControl:
public partial class BaseUserControl<T> : UserControl
{
public virtual void MyMethod<T>()
{
// some base stuff here
}
}...
Wachter asked 24/3, 2009 at 14:18
2
Solved
I have this one Image and I want it to be on top of another image.
(window form application, c#)
Veliavelick asked 13/1, 2011 at 19:23
5
Solved
I want to be able to make a program. It's a program for a pizza from.
I have two buttons on the side (Pizza and subs)
When I click the pizza button, i want it to show the rest of the buttons to add...
Francescafrancesco asked 6/12, 2011 at 22:12
4
Solved
In my windows application which uses menu strip and multiple panel containers, a panel is displayed depending on menu option
hiding all panels by manually passing names is very time consuming, is ...
Bathtub asked 6/6, 2013 at 19:35
3
Solved
I've never liked the Visual Studio [Design] tab when creating my forms, which is why I always create my forms programmatically from a scratch and I only use one .cs file, such as Form1.cs. Just tod...
Assuage asked 16/2, 2013 at 15:17
2
Solved
When trying to design a form in Visual Studio 2010:
How do i tell Visual Studio to ignore whatever's causing the problem and continue?
Research the problem showed two possible solutions:
Meridet...
Phantasmagoria asked 21/11, 2011 at 15:43
3
When try to open in design mode a form (VB.NET), in which I have a custom UserControl, I see the message from Visual Studio:
---------------------------
Microsoft Visual Studio
------------------...
Flapjack asked 22/2, 2012 at 10:20
5
Solved
I have a tab control in a windows form and I want to be able to click on a tab and in the body area of the tab I want it to display another form as an embedded component. Is this possible? If so, c...
Dubois asked 26/4, 2011 at 20:54
2
I have control containers tightly bound to the edge of user controls, evenly spaced on both sides of said user control (child controls are always centered within the parent). Using the designer, I ...
Skaw asked 26/9, 2012 at 20:11
4
Solved
I'm developing a program that has many buttons that should do a similar action when clicked, but with a small difference based on which button was clicked.
The problem is that the only straightforw...
Beyond asked 23/9, 2012 at 17:3
2
Solved
I'm creating a custom control that lays out radio buttons (No it doesn't have to be radio buttons. I'm just trying to learn how to do this so I can make some more complex stuff down the road that m...
Mislay asked 13/9, 2012 at 19:42
2
Solved
I have a relatively simple setup. I have a custom usercontrol that has a bunch of components on it, some text boxes, and a listview.
In the designer, I can drag and drop other controls into my use...
Misread asked 13/8, 2012 at 15:13
3
Solved
I know how to configure VS 2008 to open windows forms controls in code instead of the designer. But I think I have seen a way I could do this with an attribute I could decorate the desired controls...
Ivories asked 24/11, 2009 at 11:55
1
Solved
I have a class:
public class Filter
{
public Filter (string name, string value)
{
Name = name;
Value = value;
}
public string Name {get; private set;}
public string Value {get; set;}
}
A...
Linetta asked 2/5, 2012 at 13:6
2
Solved
I am building my user interface in Visual Studio and I've noticed that there is not a set parent property in a control's property toolbar.
I am wondering why this is so, and if there is a clean wa...
Comp asked 22/2, 2012 at 16:55
3
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 adjus...
Leatherneck asked 31/5, 2011 at 14:4
6
Solved
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 ...
Eduction asked 19/2, 2009 at 22:47
7
Solved
One of the most loved and hated feautures of visual studio must be the form designer.
Creating a simple form/user control layout usually is a breeze. Setting properties and adding events is ...
Stogy asked 4/11, 2010 at 9:0
© 2022 - 2024 — McMap. All rights reserved.