Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GroupBox not in toolbox

I am using Visual Studio 2010 and I cant find groupbox in toolbox. It is showing in the list of components and it is checked. I also tried to insert it through code but it is also not showing in the code. In some pre made pages like login and createuser wizard visual studio is showing the groupbox. Any idea what could be the problem?

like image 903
Hasan Zubairi Avatar asked Dec 09 '22 20:12

Hasan Zubairi


2 Answers

The same functionality you can achieve by the following code:

<fieldset class="login">
                <legend>Title</legend>

<div>Content</div>
</fieldset>
like image 148
Hasan Zubairi Avatar answered Dec 25 '22 02:12

Hasan Zubairi


You can use Panel. Specify the text on GroupingText property.

like image 41
Dionisio Estrada Avatar answered Dec 25 '22 03:12

Dionisio Estrada