Tagged Questions

5
votes
2answers
202 views

What is this control? Group Box or Not!

Just curious about the control shown below, the straight line with label beside it. I tried to find a similar control for it but there was none nor any group box setting, so instead I just made a ...
3
votes
4answers
162 views

How can I add a bunch of labels to a C# form and then scroll the form vertically?

I have a form in C# (WinForm). It looks like this: (LOGO) blank space for labels that I add through code (I can fit 10 labels in this space) (close button) The blank ...
3
votes
2answers
129 views

Are there any good resources/idioms for visually designing business applications?

I think we're all aware of what "your company's line-of-business software" looks like. Are there any resources, rules of advice, or general tricks to visually taming applications like this? Our ...
2
votes
2answers
43 views

Should I share UI for objects that use common fields?

I have a parent class that holds all of the fields that are common between all device types. From that, I have a few derived classes that each hold their unique fields. Say I have device type "Switch" ...
2
votes
4answers
807 views

Master-Detail GUI in .net

This type of UIs are frequently displayed in various web-Sites and .net books. Are these types of User-Interfaces acceptable and/or popular in commercial and/or customized Business Software? ...
0
votes
1answer
76 views

Help with designing a form

I want to use a TreeView and design a form similar to the following image: Details: user select item group from treeview (treeview content checkbox). After check each group from treeview items in ...
0
votes
2answers
183 views

Master page in C#

I have to design a control_panel form. This will have many tabs. How should I design this? Should I make different new forms for each tab or is there a concept of Masterpage in C# WinForms? Please ...