GUI Programming in Modern C++ Style
Nana 1.3.0 Released
February 8, 2016

Nana 1.3.0 released for new features and some bugfixes.

Thanks for you guys who contributed, by reporting bugs and submitting to this Nana release.
Ariel Vina-Rodriguez, kmribti, leobackes, Pr0curo and redagito.

(Release Notes)

Download Nana C++ Library
#include<nana/gui.hpp>

int main()
{
     using namespace nana;
     form fm;
     drawing{fm}.draw([](paint::graphics& graph){
         graph.string({10, 10}, L"Hello, world!", colors::red);
     });
     fm.events().click(API::exit);
     fm.show();
     exec();
}


What is Nana?
Updated Discussion
News