我正在与 toga(Beeware) 合作一个项目。
但我无法制作无框窗口
这是我的 app.py 文件
import toga
from toga.style import Pack
from toga.style.pack import COLUMN, ROW
class Eagle(toga.App):
def startup(self):
Frame = toga.Box()
self.main_window = toga.MainWindow(title=self.formal_name,size = (200,300))
self.main_window.content = Frame
print(dir(self.main_window))
self.main_window.show()
def main():
return Eagle()
如何使这个self.main_window
无框架
如果不可能,那么我将转移到其他 Gui FrameWork