GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
MultipleSelectListBoxStyles.cpp
Go to the documentation of this file.
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace styles
8 {
10 {
11 this->appendStyle(LBS_MULTIPLESEL);
12
13 if (isSorting)
14 {
15 this->appendStyle(LBS_SORT);
16 }
17 }
18 }
19}
void appendStyle(LONG_PTR style)
Append new WinAPI style.
Definition IStyles.cpp:23