1
vote
1answer
34 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 …
0
votes
2answers
134 views
Attach components to GroupBox in C#
I want to insert a group box in the form and put in 3 radio buttons in it.
Are there any advantages in attaching the 3 radio buttons to the groupbox.? Cab we even do that?
If I have to do it how do …
1
vote
1answer
124 views
GroupBox in WPF can only contain one element?
It seem that GroupBox can only contain one element, if I place more than one it's won't go inside(or get deleted in blend).
Is this by design or am I doing something wrong?
1
vote
3answers
279 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
454 views
Group box with title as Check box
Hi,
I am using Visual Studio 6.0 (VC++ with MFC) in Windows XP platform. I am trying to create a group box with the title of the group box as a check box. My intention is this: If the check box is …
1
vote
1answer
229 views
Problems binding Foreground property of GroupBox HeaderTemplate.
I defined a DataTemplate for the header of my GroupBoxes:
<Style x:Key="GroupBoxHeaderStyle" TargetType="{x:Type GroupBox}">
<Setter Property="Foreground" …
0
votes
3answers
638 views
Change group box text color?
How do you change the text color of a group box in C#? The "documentation" doesn't even mention this, and Googling hasn't turned up an answer.
Thanks!
Alan
0
votes
4answers
545 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 …
0
votes
2answers
1k 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.
5
votes
3answers
1k views
Does the GroupBox Header in WPF swallow mouse-clicks?
Hi guys,
Have a look at this very simple example WPF program:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
…
