cnjinhao / nana

a modern C++ GUI library
https://nana.acemind.cn
Boost Software License 1.0
2.3k stars 331 forks source link

Added label borders #639

Closed ashbob999 closed 2 years ago

ashbob999 commented 2 years ago

Borders can now be added to labels.

Added functions:

Example 1

label lb{ fm };

label::border b{ label::border::all, 1, nana::color(255, 255, 255) };
lb.set_border(b);

Example 2

label lb{ fm };

lb.add_border(label::border::left);
lb.border_width(2);
lb.border_color({ 0, 0, 255 });
cnjinhao commented 2 years ago

Thanks for your PR!