Tagged Questions

22
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" ...
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?
7
votes
4answers
5k views

WPF GroupBox with no header space

Easy one, I would like to have a GroupBox with no header space The closest thing is a border, but the border "by default" does not have the same Style as the group box. What's the easiest way ...
4
votes
1answer
1k views

Why does my WPF GroupBox looks so weird?

I have no style set anywhere in my application! UPDATE:
3
votes
1answer
250 views

Problem with the mouse click on toggleButton in WPF

I made a custom control template that turns a groupbox into an expander (clicking on the header expands/collapses the content of the groupbox). It works fine except that mouse clicks don't always go ...
3
votes
2answers
2k views

WPF Groupbox header postion alignment

Is it possible to set the position alignment for a GroupBox Header in WPF? The default is to place in the top left corner of the GroupBox outline but I would like it to be centered at the top. I know ...
2
votes
1answer
228 views

WPF: get the content of a GroupBox to fill available space

I'm facing an irritating problem with WPF GroupBox, hope someone can help me out. Basically the problem is this: I have a listview inside a GroupBox, but no matter what I do I can't seem to be able to ...
2
votes
1answer
317 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
1answer
749 views

WPF GroupBox ControlTemplate : How to apply a Style only to elements in the Header?

I'm trying to make a ControlTemplate for a GroupBox such that if a TextBlock is declared in the Header its Background should be set to yellow. The problem is that, although I define a style for ...
1
vote
1answer
150 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
2answers
410 views

WPF GroupBox Custom Header Alignment Left And Right

I am trying to add content to a groupbox header, so that part of the content aligns to the left and the other part aligns to the right. I've tried adding a grid as the content to the header with 2 ...
1
vote
1answer
597 views

WPF GroupBox header Alignment issue

How can i align the groupBox header to the center rather than the default left positioning. I read in many post that one can use template but i have no idea about such thing. So please let me know ...
1
vote
4answers
3k views

WPF GroupBox HeaderTemplate and DataBinding

I define a headertemplate into a wpf groupbox and the databinding doesn't work. I don't understand why. <GroupBox> <GroupBox.HeaderTemplate> <DataTemplate> ...
1
vote
2answers
2k views

WPF: GroupBox dynamic height

I have a textbox and datagrid inside of a dockpanel that is in a WPF groupbox. <GroupBox Margin="8,142.04,1.783,230.4" Height="Auto" Header="Desired Meeting Outcomes (decisions or actions)?" ...
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
1answer
46 views

How to check if any of three controls has focus at same time in wpf?

I have a three textboxes...and I wanted to check if any of these three has focus in it. I tried something like this -> added three properties in viewmodel...whose value will be toggled by lost/got ...
0
votes
1answer
432 views

wpf: remove control in GroupBox

I have a GroupBox inside a Canvas containing different controls. At runtime I want to change the GroupBox to an Expander. No, I cannot do that in xaml. That would be easy! I get all the children of ...
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
1answer
1k views

WPF GroupBox Header Customization

I have edited the standard GroupBox template as I wanted to customize it. Apart from other customizations, I wanted the GroupBox header to be Horizantally aligned in the Center instead of Left or ...
0
votes
3answers
423 views

Styling a groupbox in WPF

How can I set the opacity of the background for a groupbox etc. The code beneath doesn't compile: <Style TargetType="GroupBox"> <Setter Property="Background"> ...
0
votes
2answers
632 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
1answer
197 views

Wpf: Loading DataGrid in Groupbox causes Groupbox to be too tall

I have a GroupBox that contains a stackpanel holding a textbox and a datagrid. When I use the textbox to populate the datagrid. Sometimes I need to load the datagrid with values. What I am noticing is ...
0
votes
1answer
319 views

using style in WPF

In my application I use the ShinyBlue.xaml resource dictionary which has this code for the GroupBox control: <Style TargetType="{x:Type GroupBox}"> <Setter Property="Template"> ...
0
votes
1answer
552 views

Label and GroupBox triggers not working, same trigger works on StackPanel

I have a set of triggers in a XAML form, and for the life of me I can't figure out why one set works, and the other doesn't, despite being bound to the exact same variable. First, the triggers that ...
0
votes
1answer
324 views

need to add textBlocks to a group box and clear when data is loaded in a graph control

I'm creating a graph control. what i'm doing for adding x and y axis tally labels is i'm adding a text block to each tally mark and show the value related to that tally mark. but when i need to load ...
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
1answer
827 views

WPF GroupBox ContextMenu not showing unless the border/header clicked

I've got a scenario where I have a GroupBox which has a bit of content in it. I'm looking to add a ContextMenu to that GroupBox and have that menu shown when the user right-clicks anywhere in the box. ...