Open In App
Related Articles

wxPython – ClearFocusedItem() method in wx.TreeCtrl

Improve Article
Improve
Save Article
Save
Like Article
Like

In this article we are going to learn about  ClearFocusedItem() method associated with wx.TreeCtrl class of wxPython. ClearFocusedItem() is a simple method and used in order to clear the currently focused item of Tree Control.

Syntax: wx.TreeCtrl.ClearFocusedItem(self)

Parameters: No arguments are required by ClearFocusedItem() method.

Code Example:




import wx
  
class Tree(wx.Panel):
  
    def __init__(self, parent):
        wx.Panel.__init__(self, parent)
  
        # create Tree Control in frame
        self.tree = wx.TreeCtrl(self, wx.ID_ANY, wx.DefaultPosition,
                                                 wx.DefaultSize,
                                                 wx.TR_HAS_BUTTONS)
  
        # Create root for Tree Control
        self.root = self.tree.AddRoot('Root')
  
        # Add item to root
        item = self.tree.AppendItem(self.root, 'Item')
  
        # Clear focused item
        self.tree.ClearFocusedItem()
  
        # expand tree
        self.tree.Expand(self.root)
  
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.tree, 0, wx.EXPAND)
        self.SetSizer(sizer)
  
# main root frame for tree control
class rootframe(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, parent = None, title ='TreeCtrl Demo')
        panel = Tree(self)
        self.Show()
  
  
if __name__ == '__main__':
    app = wx.App(redirect = False)
    frame = rootframe()
    app.MainLoop()


Output Window:

None of the item is focused in the tree control


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 09 Jul, 2020
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials