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"
...
3
votes
3answers
3k views
Group box with title as Check box
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
3answers
240 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 ...
0
votes
2answers
104 views
Silverlight: How to create checkboxes inside GroupBox dynamically from collections of collections?
My case is like, I have a collection object that contain a collection as:
public class GroupBoxColletion
{
public string GroupBoxName;
public list<CheckBox> CheckBoxName;
}
Note: I ...
0
votes
1answer
504 views
winforms - how do I setup Checkbox's in a Groupbox so that I can reference checkbox states at the group level?
I am working on a WinForms app in C#, VS2008.
How do I setup Checkbox's in a Groupbox so that I can reference checkbox states at the group level? For example 7 checkboxes for each day of the week. ...