//spinbox
void testspinbox()
{
    using namespace nana;

    form fm;
    spinbox spbox(fm, rectangle{ 10, 10, 100, 30 });
    spbox.range(0, 100, 1); //Set the range of integers

    fm.show();
    exec();
}