var fDesc=new Array();
fDesc[0] = "Introducing a new way to design Windows Forms Applications. Designbox delivers a powerful new approach that enables you to create, edit, share, and apply control designs within Visual Studio.
Main features:
- Store preset property values for any Windows Forms Control
- Apply designs to new controls using the Design Gallery
- Copy and edit your custom designs to capture design variations
- Create custom Design Libraries that target vertical applications
- Seamlessly integrated into Visual Studio
- Works with all Windows Forms controls from any vendor";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}