According to the title, is this possible?
In tri-state, I mean that the parent node:
I used them previously in C #, but can't find an equivalent control / implementation for wxPython.
Have you looked at wx.lib.agw.CustomTreeCtrl ?
I'm not sure if it makes a tri-state out of the box, but it is written in Python, so it is quite simple to extend it.
CustomTreeCtrl, tri-state.
CustomTreeCtrl
,
self.root= self.tree.AddRoot("root node",ct_type=1)
node,
child= self.tree.AppendItem(parent,"child",ct_type=1)
GenericTreeItem, _is3State True
GenericTreeItem
_is3State
self.root.Set3State(True)
child.Set3State(True)
Source: https://habr.com/ru/post/1739291/More articles:The difference between "select count (null)" and "select count (1)" is mysqlWikipedia filtering XML dump: error on some accents - javaHow to get message body and attachments in XML format using php / linux from Lotus Domino server? - phphttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1739289/drm-for-videos-bundled-with-a-desktop-app&usg=ALkJrhhCpOvMdZWbeISs8r3Tt02KTm1CEwDatabase export to oracle - databaseWhere can I find ASP.NET MVC2 documentation / tutorials? - asp.netHow to run jQuery form validation by class? - jqueryWhy can't I bind the viewmodel property to the dependency property of a custom control - c #change vertex color in vertex shader - openglCreating a simple array - arraysAll Articles