如何在 Wx.Stc.StyledTextCtrl 中不允许撤消 (Ctrl+Z)



我在python-3中做了一个项目,我用wxpython创建了一个gui。在 gui 中,我使用 wx.stc.StyledTextCtrl,我不希望用户无法撤消(Ctrl + Z(。有没有选择这样做?如果有人知道如何不允许(Ctrl + V(,那也很棒。

感谢那些回答的人!

以下是创建 wx.stc.StyledTextCtrl 的基本代码:

import wx
from wx.stc import StyledTextCtrl
app = wx.App()
frame = wx.Frame(None, -1, title='2', pos=(0, 0), size=(500, 500))
frame.Show(True)
messageTxt = StyledTextCtrl(frame, id=wx.ID_ANY, pos=(0, 0), size=(100 * 3, 100),
style=wx.TE_MULTILINE, name="File")
app.SetTopWindow(frame)
app.MainLoop()

另一种选择是使用stcCmdKeyClear函数,它允许stc为您完成工作。

import wx
from wx.stc import StyledTextCtrl
app = wx.App()
frame = wx.Frame(None, -1, title='2', pos=(0, 0), size=(500, 500))
frame.Show(True)
messageTxt = StyledTextCtrl(frame, id=wx.ID_ANY, pos=(0, 0), size=(100 * 3, 100),
style=wx.TE_MULTILINE, name="File")
messageTxt.CmdKeyClear(ord('V'), wx.stc.STC_SCMOD_CTRL)
messageTxt.CmdKeyClear(ord('Z'), wx.stc.STC_SCMOD_CTRL)
app.SetTopWindow(frame)
app.MainLoop()

您可以将 StyledTextCtrl 绑定到EVT_KEY_DOWN事件,并在按下控制键时阻止 V 和 Z 键。使用您的示例:

import wx
from wx.stc import StyledTextCtrl
app = wx.App()
frame = wx.Frame(None, -1, title='2', pos=(0, 0), size=(500, 500))
frame.Show(True)
messageTxt = StyledTextCtrl(frame, id=wx.ID_ANY, pos=(0, 0), size=(100 * 3, 100),
style=wx.TE_MULTILINE, name="File")

def on_key_down(evt):
"""
:param evt:
:type evt: wx.KeyEvent
:return:
:rtype:
"""
if evt.CmdDown() and evt.GetKeyCode() in (ord("Z"), ord("V")):
print("vetoing control v/z")
return
# allow all other keys to proceed
evt.Skip()

messageTxt.Bind(wx.EVT_KEY_DOWN, on_key_down)
app.SetTopWindow(frame)
app.MainLoop()

相关内容

  • 没有找到相关文章

最新更新