//
// button1
//
button1->location = point(23, 96);
button1->size=system::drawing::size(100,60);
button1->name = "button1";
button1->tabindex = 0;
button1->text = "start my first c++ winform application";
button1->click += new system::eventhandler(this,
&form1::button1_click);
//
// label1