Windows.Forms under IronPython
2007-06-02 02:11:19 GMT
New user of mono through IronPython just joining the mailing list. I've read some of the getting started docs with mono and winforms, and looked over what has been implemented, but didn't an answer to the following problem. I'm running mono on Linux out of CVS with latest FePy: % mono -V Mono JIT compiler version 1.2.4 (/trunk/ r78467) Copyright (C) 2002-2007 Novell, Inc and Contributors. www.mono-project.com TLS: __thread GC: Included Boehm (with typed GC) SIGSEGV: normal Architecture: x86 Disabled: none % mono ipy.exe IronPython 1.1 (1.1) on .NET 2.0.50727.42 Copyright (c) Microsoft Corporation. All rights reserved. >>> import clr >>> clr.AddReference("System.Windows.Forms") >>> from System.Windows.Forms import Application, Form >>> f = Form() >>> Application.Run(f) type: 10 Not implemented Traceback (most recent call last): File System.Windows.Forms, line unknown, in Run File System.Windows.Forms, line unknown, in RunLoop File System.Windows.Forms, line unknown, in set_Visible File System.Windows.Forms, line unknown, in SetVisibleCore File System.Windows.Forms, line unknown, in SetVisibleCore File System.Windows.Forms, line unknown, in CreateControl File System.Windows.Forms, line unknown, in CreateHandle(Continue reading)
RSS Feed