====== Widgets ====== ===== Panel ===== panel = wx.Panel(parent) ===== StaticText ===== label = wx.StaticText(parent, label="...") label.SetLabel("...") ===== Grid ===== * [[https://www.blog.pythonlibrary.org/2010/04/04/wxpython-grid-tips-and-tricks/|Grid Tips and Tricks]] Pour cacher les entĂȘtes de lignes et colonnes (lignes et colonnes fixes) : grid.SetRowLabelSize(0) grid.SetColLabelSize(0)