StatusBar 上的 wxpython SetStatusText 不起作用

wxpython SetStatusText on StatusBar doesn't work

我正在通过制作一个带有菜单栏和状态栏的 window 来训练 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()

当我点击打开或Close时,状态栏上没有文字,但是有状态栏。如果我选择 ose 而不是设置状态文本以在终端中打印某些内容,它就可以正常工作。我也试过写 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)