wxpython でイライラする問題があります。wx.lib.masked からマスクされた ComboBox を使用しようとしましたが、その戻り値を文字列と比較しようとすると、文字列が ComboBox からの戻り値と同じであっても、結果は常に False になります。 . 通常の ComboBox では、すべてが期待どおりに機能します。では、マスクされた ComboBox の問題は何でしょうか?
テストコードの一部を次に示します。
import wx
import wx.lib.masked as masked
class TestMasked(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent, id=wx.ID_ANY)
choices = ['one', 'two', 'three']
self.combo_box_masked = masked.Ctrl( self, -1,
controlType = masked.controlTypes.COMBO,
choices = choices,
autoSelect=True
)
self.combo_box_masked.SetCtrlParameters(formatcodes = 'F!V_')
self.Bind(wx.EVT_COMBOBOX, self.EvtComboMasked, self.combo_box_masked)
self.combo_box = wx.ComboBox(self, wx.ID_ANY, choices=choices)
self.Bind(wx.EVT_COMBOBOX, self.EvtCombo, self.combo_box)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.combo_box_masked, 1, wx.ALL, 5)
sizer.Add(self.combo_box, 1, wx.ALL, 5)
self.SetSizerAndFit(sizer)
def EvtCombo(self, event):
one_combo = self.combo_box.GetValue()
one_str = 'one'
print one_combo == one_str
def EvtComboMasked(self, event):
one_combo = self.combo_box_masked.GetValue()
one_str = 'one'
print one_combo == one_str
class DemoFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, wx.ID_ANY, "Test Masked")
panel = TestMasked(self)
self.SetSize((500,500))
self.Center()
self.Show()
#----------------------------------------------------------------------
if __name__ == "__main__":
app = wx.PySimpleApp()
frame = DemoFrame()
app.MainLoop()