wxPython

怪奇wxGrid

wx.Gridでハマった。 以下のソースは、ぱっと見だと問題ないように見える。testWxGrid.py # -*- coding: utf-8 -*- import wx from wx import xrc class testWxGrid(wx.Dialog): def __init__(self, parent): self.res= xrc.XmlResource( "testWxGrid.xrc" )…

wx.Menubarあれこれ

def _init_menubar(self): """ メニューバーの初期化を行う """ self.menuBar = wx.MenuBar() # 1st menu from left menu1 = wx.Menu() menu1.Append(100, "&Open\tCTRL+O") menu1.AppendSeparator() menu1.Append(101, "&Save\tCTRL+S") menu1.Append(102, …