wxPython – 禁用wxPython中的静态文本
Python提供了 wxpython包 ,它允许我们创建高功能的图形用户界面。它是Python的跨平台GUI工具包,Phoenix版本是改进的下一代wxPython,它主要关注速度、可维护性和可扩展性。
在这篇文章中,我们将了解如何禁用静态文本。我们可以使用 Disable() 方法禁用静态文本 Disable()方法只是禁用一个静态文本,我们不能选择文本。
Disable()函数不需要任何参数。
语法: wx.StaticText.Disable()
参数: Disable()函数不需要参数。
示例:
# importing wx library
import wx
# create an Example class
class Example(wx.Frame):
# constructor
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
# method calling
self.InitUI()
# method for user interface creation
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
# create parent panel for button
self.pnl = wx.Panel(self)
# create statictext at point (20,20)
self.st = wx.StaticText(self.pnl,
id = 1,
label = "Button")
# disable statictext
self.st.Disable()
self.SetSize((350, 250))
self.SetTitle('wx.Button')
self.Centre()
# main function
def main():
# create an App object
app = wx.App()
# create an Example object
ex = Example(None)
ex.Show()
# running an app
app.MainLoop()
# Driver code
if __name__ == '__main__':
# main function call
main()
输出: