[Mono-winforms-list] System.Windows.Forms Status Update
Peter Dennis Bartok
peter@novonyx.com
Fri, 10 Sep 2004 13:01:10 -0600
>How are drivers being implemented? Do they map to the basic drawing
>capabilities of the native OS? Where can I find more information
>about this?.
Abstract driver class:
mcs/class/Managed.Windows.Forms/System.Windows.Forms.XplatUIDriver.cs
X11 driver:
mcs/class/Managed.Windows.Forms/System.Windows.Forms.XplatUIX11.cs
Win32 driver:
mcs/class/Managed.Windows.Forms/System.Windows.Forms.XplatUIWin32.cs
Drawing capabilites, as I mentioned in my original post, are handled through
System.Drawing, not through the driver. The driver interfaces with the
underlying windowing system.
Peter