GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ListBox.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace gui_framework
6{
9 {
10 public:
11 ListBox(const std::wstring& listBoxName, const utility::ComponentSettings& settings, BaseComposite* parent, bool isSorting = false);
12
13 size_t getHash() const override;
14
15 ~ListBox() = default;
16 };
17}
#define GUI_FRAMEWORK_API
Base class for all windows that has children windows.
Base class for all list boxes.
Definition BaseListBox.h:15
Standard list box.
Definition ListBox.h:9