Tagged Questions
8
votes
4answers
7k 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?
3
votes
3answers
299 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
966 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
3answers
241 views
Change Colour of Group Box Group Title Name
How I can change the GroupBox title colour?
The default colour is blue and I would like to alter that.
2
votes
1answer
315 views
WPF Groupbox height needs to change dynamically?
I am working with a groupbox in WPF, and Inside of the groupbox is a stackpanel. The stackpanel has items that are removed, and added to its children.
The problem I am experiencing is that ...
2
votes
2answers
1k views
Groupbox with a flowlayout panel inside and autosize = true shrinks like it is empty
I have a groupbox that holds a flowlayout panel and the flowlayout panel holds a bunch of controls. I set the flowlayout panel to dock with the parent. Since I don't know how many controls will be ...
2
votes
2answers
817 views
WinForms - DataGridView Inherits style from GroupBox
I have a weird problem, and I don't know if this is the default behaviour of .Net DataGridView inside a GroupBox/TabControl.
I've created a new WinForm project from scratch, and created a ...
2
votes
4answers
6k 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
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
175 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
198 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
149 views
C#: GroupBox borders are drawn incorrectly, using WPF and XAML
This is what my groupBox looks like: http://i.imgur.com/ISvKC.png
There is nothing placed on top of the groupBox or anything like that. Some groupboxes are correct, some are not. I have no clue ...
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
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++)
...
1
vote
2answers
1k 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
1k 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
2answers
111 views
2 panels in a GROUPBOX? WinForms
Is it possible to put 2 panels inside a groupbox??
Because I put 2 panels inside my groupbox and I Made them hidden.
Whenever I try to make them Visible only the first panel appears.
I've tried it ...
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
691 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
134 views
How do I embed GroupBoxes in a ListView?
I have numerous groupboxes that need to be listed in a ListView.
I have tried:
listView1.Controls.Add(new NewsBox());
(NewsBox being a custom class derived from GroupBox, just with standard labels ...
0
votes
2answers
970 views
C# Groupbox - customising the look and feel of border / caption
I have 2 groupboxes which I would like to customise a bit more, and I dont want to resort to having a panel with a label (this would mean that I would have to have the same background colour for the ...
0
votes
2answers
70 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
2answers
629 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 ...