1. WPF WIndow Create
import clr clr.AddReference("PresentationFramework") clr.AddReference("PresentationCore") from System.Windows import * if __name__ == "__main__": w = Window() w.Title = "Hello World" w.Width = 320 w.Height = 240 Application().Run(w)
댓글 없음:
댓글 쓰기