Tagged Questions

21
votes
4answers
3k views

Does the GroupBox Header in WPF swallow mouse-clicks?

Have a look at this very simple example WPF program: <Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
3answers
510 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
2k views

panel vs groupbox in a windows forms application

Aren't both doing the same thing? How is each different from the other in case of the windows forms application.
0
votes
2answers
103 views

VB.NET Label in front of or in multiple GroupBoxes

This is in VB.NET 2003 I have a Form with a few GroupBoxes overlaying one another and being shown based on what the form's supposed to be showing at the moment. What I want is to have a text object ...
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
1answer
67 views

How do I select a template for a GroupBox based on the value of an object

I want the contents of a group box to be selected by value, so how I do write the XAML to do this? <GroupBox Header="Specific details" ContentTemplateSelector={StaticResource someSelector}> ...
0
votes
2answers
626 views

How do I implement WPF group box than spans two columns?

Here is the layout I want: Grid with 2 columns, 2 rows Row 1 should contain a group box that spans both columns. Row 2, Column 1 will contain a group box Row 2, Column 2 will contain another group ...
0
votes
2answers
4k views

How to get a list of controls in a groupbox in WPF

In standard WinForms development I would do the following: foreach (Control in groupBox1.Controls) { MessageBox.Show(c.Name); } How does a guy do this in WPF? I have a Grid inside the ...
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 ...