mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 08:44:25 +08:00
13 lines
329 B
Python
13 lines
329 B
Python
from Cura.WxApplication import WxApplication
|
|
|
|
import wx
|
|
|
|
class PrinterApplication(WxApplication):
|
|
def __init__(self):
|
|
super(PrinterApplication, self).__init__()
|
|
|
|
def run(self):
|
|
frame = wx.Frame(None, wx.ID_ANY, "Hello World")
|
|
frame.Show(True)
|
|
super(PrinterApplication, self).run()
|