Add wxTL_NO_HEADER style to wxTreeListCtrl.

Closes #14838.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-11-19 18:07:55 +00:00
parent ab7f003482
commit c71b5269df
4 changed files with 19 additions and 4 deletions

View File

@@ -21,6 +21,15 @@ enum
wxTL_CHECKBOX = 0x0002, /// Show checkboxes in the first column.
wxTL_3STATE = 0x0004, /// Allow 3rd state in checkboxes.
wxTL_USER_3STATE = 0x0008, /// Allow user to set 3rd state.
/**
Don't show the column headers.
By default this control shows the column headers, using this class
allows to avoid this and show only the data.
@since 2.9.5
*/
wxTL_NO_HEADER = 0x0010,
wxTL_DEFAULT_STYLE = wxTL_SINGLE,
wxTL_STYLE_MASK = wxTL_SINGLE |