jotero
jotero

Reputation: 85

Create custom html control in toolbox Visual Studio 2012

i want create a custom html control in Visual Studio toolbox:

enter image description here

For example, if i need create a template for custom table (in toolbox):

<table id="table1" data-src="">
    <thead>
        <tr data-id="" data-u="">
            <td></td>
        </tr>
    </thead>
    <tbody>
    </tbody>
</table>

Is there any way to do this?

Thanks an sorry my english!

Upvotes: 0

Views: 758

Answers (1)

Gheorghe Bulicanu
Gheorghe Bulicanu

Reputation: 409

Just select your custom html in editor and drag into toolbox pane and custom toolbox item will be created with the text you dragged.

Upvotes: 3

Related Questions