gpt4 book ai didi

python - StatusBar 上的 wxpython SetStatusText 不起作用

转载 作者:行者123 更新时间:2023-12-01 09:21:10 26 4
gpt4 key购买 nike

我正在通过制作一个带有菜单栏和状态栏的窗口来训练 wxpython。我使用的是 mac os,所以也许它的工作方式有所不同,因为我不知道我的代码有什么问题,但我在互联网上没有找到任何内容。

这是我的代码:

#!/usr/bin/python
# coding: utf-8

import wx

class Menus(wx.Frame):
def __init__(self, ptitle):
wx.Frame.__init__(self, None, 1, title = ptitle, size = (500, 300))

menuFile = wx.Menu()
menuFile.Append(wx.ID_OPEN, "&Open\tCTRL+o")
menuFile.Append(wx.ID_CLOSE, "&Close\tCTRL+c")
menuFile.AppendSeparator()
menuFile.Append(wx.ID_EXIT, "&Quit\tCTRL+q")

menuBar = wx.MenuBar()
menuBar.Append(menuFile, "&File")

self.SetMenuBar(menuBar)

self.bar = wx.StatusBar(self, 1)
self.bar.SetFieldsCount(2)
self.bar.SetStatusWidths([1,1])
self.SetStatusBar(self.bar)

self.Bind(wx.EVT_MENU, self.OnExit, id=wx.ID_EXIT)
self.Bind(wx.EVT_MENU, self.OnOpen, id=wx.ID_OPEN)
self.Bind(wx.EVT_MENU, self.OnClose, id=wx.ID_CLOSE)

def OnOpen(self, evt):
self.bar.SetStatusText("Choice -> open", 1)

def OnClose(self, evt):
self.bar.SetStatusText("Choice -> close", 1)

def OnExit(self, evt):
self.Destroy()

class App(wx.App):
def OnInit(self):
window = Menus("Window with menu")
window.Show(True)
self.SetTopWindow(window)
return True

app = App()
app.MainLoop()

当我单击“打开”或“关闭”时,状态栏上没有文字,但有状态栏。如果我选择而不是设置状态文本来在终端中打印某些内容,则效果很好。我也尝试过写 self.bar.SetStatusText("Text") 但它也不起作用。

如果有人知道此状态栏的问题出在哪里,那就太好了。

谢谢

最佳答案

使用 self.bar.SetStatusWidths([1,1]) 您可以将宽度分别设置为 1 像素和 1 像素宽。
您应该使用 [-1,-1](等于)、[-1,-2](第 2 部分是第 1 部分的两倍)等
或者使用固定宽度 [150,200] 例如。

There are two types of fields: fixed widths and variable width fields. For the fixed width fields you should specify their (constant) width in pixels. For the variable width fields, specify a negative number which indicates how the field should expand: the space left for all variable width fields is divided between them according to the absolute value of this number. A variable width field with width of -2 gets twice as much of it as a field with width -1 and so on.

For example, to create one fixed width field of width 100 in the right part of the status bar and two more fields which get 66% and 33% of the remaining space correspondingly, you should use an array containing -2, -1 and 100.

我怀疑“关闭当前文档”消息是内部消息,非常类似于添加到菜单中的自动图标。

最后,self.bar.SetStatusText("Text") 应为 self.bar.SetStatusText("Text",1),其中 1 是您希望在其中显示文本的状态栏字段的索引。

例如

self.bar = wx.StatusBar(self, 1)
self.bar.SetFieldsCount(3)
self.bar.SetStatusWidths([200,-1,-2])
self.SetStatusBar(self.bar)
self.bar.SetStatusText("Second position",1)
self.bar.SetStatusText("Third position",2)

enter image description here

关于python - StatusBar 上的 wxpython SetStatusText 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50781353/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com