Hi all,
[Working on my first wxPython program (actually refactoring it from
Tkinter) and very happy about wxPython!].
I'm writing a task manager in which the user can manage tasks that can
have subtasks. I have two views in a notebook: one is the list view
(using ListCtrl) that shows the tasks in order from "to be finished
first" to "to be finished last", together with some attributes such as
start date, due date, etc. The other view contains a TreeListCtrl to
show the tree structure of the tasks, together with the same attributes.
Under Windows XP, the ListCtrl is a native widget (with the XP column
headers), but the TreeListCtrl is not (it does not use the XP column
headers). I'd like the two views to be as similar as possible: is it
possible to have the TreeListCtrl use the native list control? Or
alternatively, could I make the ListCtrl use the same column headers as
the TreeListCtrl?
Thanks in advance, Frank