Tagged Questions

2
votes
2answers
699 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
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
3answers
560 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?
0
votes
1answer
168 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
2answers
769 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
1answer
234 views

How do i create nice looking controls?

I found a nice controls used by a software so wanted to use or build similar nice looking controls for my applications in vb.net First Sample control is nice rounded cornor group box [ i guess so ]: ...