티스토리 뷰
# Python for .NET
import clr
clr.AddReference("Frame1")
import Frame1
import System.Windows.Forms
def main():
myForm1 = Frame1.Form1()
System.Windows.Forms.Application.EnableVisualStyles();
System.Windows.Forms.Application.Run(myForm1)
if __name__ == '__main__':
main()
Python for .NET Reference
https://github.com/pythonnet/pythonnet
https://github.com/pythonnet/pythonnet/wiki
http://kozyarchuk.blogspot.com/2015/03/winforms-with-python-by-kozyarchuk.html
http://kozyarchuk.blogspot.com/2015/03/testing-winforms-with-python.html
'Ongoing > PythonNET' 카테고리의 다른 글
Python for .NET : Windows.Forms Example 3 (0) | 2019.05.15 |
---|---|
Python for .NET : Windows.Forms Example 2 (0) | 2019.05.08 |