My 2cent tips & tricks on computer technology & Application Virtualization ...
Saturday, January 12, 2008
Setting ColumnWidth of wx.ListView control in python
# Get the size of listView Control w = self.lvMountPoint.GetSize() # Set the ColumnWidth self.lvMountPoint.SetColumnWidth(0,w[0] * 0.81) self.lvMountPoint.SetColumnWidth(1,w[0] * 0.19)
No comments:
Post a Comment