Tagged Questions

4
votes
2answers
179 views

How do I style a GroupBox caption separately from its contents?

I'm developing a WinForms application and on one form, I use a GroupBox to group related controls together. I would like to style the caption in a particular way (e.g. making the caption bold). By ...
3
votes
3answers
300 views

How can I add moving effects to my controls in C#?

I have a Panel In my C# form and I have a button. When I click on the Button the invisible Panel Shows. Instead of that I want the Panel to move in or slide in. For example when you click on a ...
3
votes
2answers
967 views

WinForm - TabStop Not Working

I have a WinForm with 3 group boxes, one with combo boxes, and two with radio buttons. I set all of them and their children controls to "TabStop = false", but when I cycle with TAB, the currently ...
2
votes
1answer
113 views

groupboxes becomes inaccessible using TAB after clicking button

I have a form which has two groupboxes (& other controls as well, its the groupboxes that are creating problems), a 'SAVE' button which saves the form data into a database & a 'NEW FORM' ...
2
votes
2answers
641 views

Delete Controls inside GroupBox

I created a groupbox and then populate it with buttons during runtime. I also created a button, say Button1 to loop through the groupbox and delete those buttons. Here's my code for Button1: Public ...
2
votes
3answers
806 views

Why does GroupBox not have a MouseMove event?

The WinForms GroupBox control doesn't support MouseMove (or at least, not consistently), and I don't understand why. Since it descends from Control, it does have a MouseMove event, but GroupBox ...
2
votes
4answers
9k views

How do you change the color of the border on a group box?

In C#.NET I am trying to programmatically change the color of the border in a group box. Update: This question was asked when I was working on a winforms system before we switched to .NET.
1
vote
2answers
57 views

Inherited GroupBox has OnPaint jitters

I've been searching all morning and unfortunately I'm not sure what the techincal term is for this issue, so I'm unable to find a resolution. When I derive from a GroupBox and override the onPaint ...
1
vote
3answers
179 views

How to bind a custom control check box

I have been having issues with a custom check box control for a while now and had posted this Question... It appears that the problem isn't related to the events. The custom control is a group box ...
1
vote
1answer
199 views

FlowLayoutPanel Height bug when using AutoSize

I have a form holding a TableLayout with 1 column and 3 rows that holds 2 FlowLayoutPanels and a Text box. All Rows are AutoSize, and the column is set to Percentage=100%. Each FlowLayoutPanel holds ...
1
vote
1answer
427 views

Custom GroupBox control with other controls inside

I didn't like any available solutions so I started to make my own wizard interface. I use a GroupBox for each step of the wizard but since every step (every GroupBox) must have the same structure and ...
1
vote
3answers
512 views

Rounded corners in GroupBox control

How can I get rounded corners in a GroupBox in my form? Is there any option in the property tab?
1
vote
1answer
220 views

resize groupbox with sleep between iteration show up after loop ends

I make new project and simplified it to check if this bug is real, and this is my code: private void button1_Click(object sender, EventArgs e) { for (int i = 0; i < 10; i++) ...
0
votes
1answer
141 views

Can Margin be enforced even with Dock property set?

I have a WinForms Form with a few controls on it. All of them are GrouBox controls and I want them stacked, with a vertical margin set between them. I have set the Dock property to Top and it stacks ...
0
votes
0answers
310 views

C#/WinForms: GroupBox border not drawing until resize when using WS_EX_COMPOSITED

I have a Form on which I have a TabControl which in turn contains a GroupBox. I have set the WS_EX_COMPOSITED extended style in the form's overridden CreateParams method in order to reduce flickering ...
0
votes
2answers
693 views

Positioning Controls in the .Net GroupBox

Normally, I write forms that are resizeable (gracefully) using the method below. using System.Drawing; using System.Windows.Forms; namespace silly { public class Form1 : Form { ...
0
votes
2answers
71 views

Excluding the GroupBoxes that are inside another GroupBox

Let's say I have 7 group boxes but some of them also have group box inside them and some do not. now if I want to iterate through those 7 group boxes and apply something to them, is there a way that I ...
0
votes
1answer
475 views

winforms - how do I setup Checkbox's in a Groupbox so that I can reference checkbox states at the group level?

I am working on a WinForms app in C#, VS2008. How do I setup Checkbox's in a Groupbox so that I can reference checkbox states at the group level? For example 7 checkboxes for each day of the week. ...
0
votes
6answers
3k views

How do I set the GroupBox caption colour

On my system, the caption of a groupbox is always a dark blue colour, how do I change this? The answer to How do you change the color of the border on a group box? shows how I can override the ...