mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
12 lines
329 B
Python
12 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()
|